diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2b46744..7f22488 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,10 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Twitter, Instagram, Linkedin } from "lucide-react"; +import FooterBase from "@/components/sections/footer/FooterBase"; export default function AboutPage() { const navItems = [ @@ -19,34 +18,41 @@ 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 042f98d..914439e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,10 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ContactFaq from "@/components/sections/contact/ContactFaq"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { Twitter, Instagram, Linkedin, MessageCircle } from "lucide-react"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import FooterBase from "@/components/sections/footer/FooterBase"; export default function ContactPage() { const navItems = [ @@ -19,37 +18,47 @@ export default function ContactPage() { return ( - - - + +
+ +
+
); -} +} \ No newline at end of file