diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..e27fdc3 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,55 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function AboutPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e04fffe..77bd284 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,13 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import ContactText from '@/components/sections/contact/ContactText'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import { Check, MapPin, PhoneCall, Zap } from "lucide-react"; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ +
-
- -
- - +
); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 11ca724..2cb0162 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,12 +28,9 @@ export default function LandingPage() {