Initial commit

This commit is contained in:
Rami Bitar
2026-04-19 11:28:23 -04:00
commit a51f82e681
69 changed files with 7187 additions and 0 deletions

13
components/About.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
const About: React.FC = () => {
return (
<div className="text-center">
<h1 className="text-5xl font-bold text-black mb-8" style={{fontFamily: 'Space Grotesk, sans-serif'}}>
About Page
</h1>
</div>
);
};
export default About;