diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 10aad2c..d1490d1 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -2,226 +2,72 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
-import FaqBase from '@/components/sections/faq/FaqBase';
-import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
-import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
+
+export default function ContactPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Anime", id: "/anime" },
+ { name: "Watch Free", id: "#features" },
+ { name: "FAQs", id: "/faqs" },
+ { name: "Contact", id: "/contact" }
+ ];
-export default function LandingPage() {
return (
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
);
diff --git a/src/app/faqs/page.tsx b/src/app/faqs/page.tsx
index 8ba4f1f..a57ddaf 100644
--- a/src/app/faqs/page.tsx
+++ b/src/app/faqs/page.tsx
@@ -2,246 +2,70 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import ContactFaq from '@/components/sections/contact/ContactFaq';
-import FaqBase from '@/components/sections/faq/FaqBase';
-import FaqDouble from '@/components/sections/faq/FaqDouble';
-import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
-import { MessageSquare } from "lucide-react";
+import FaqBase from '@/components/sections/faq/FaqBase';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
+
+export default function FaqsPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Anime", id: "/anime" },
+ { name: "Watch Free", id: "#features" },
+ { name: "FAQs", id: "/faqs" },
+ { name: "Contact", id: "/contact" }
+ ];
-export default function LandingPage() {
return (
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
);