diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..3f47dd2
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,74 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import ContactCenter from "@/components/sections/contact/ContactCenter";
+import FooterCard from "@/components/sections/footer/FooterCard";
+import { MapPin, Instagram, Facebook, MessageCircle } from "lucide-react";
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx
new file mode 100644
index 0000000..996d9c2
--- /dev/null
+++ b/src/app/faq/page.tsx
@@ -0,0 +1,92 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import FaqDouble from "@/components/sections/faq/FaqDouble";
+import FooterCard from "@/components/sections/footer/FooterCard";
+import { HelpCircle, Instagram, Facebook, MessageCircle } from "lucide-react";
+
+export default function FAQPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 61cdfe4..330dabe 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,7 +31,8 @@ export default function AmiManeraLanding() {
{ name: "Inicio", id: "hero" },
{ name: "Productos", id: "features" },
{ name: "Ubicación", id: "location" },
- { name: "Contacto", id: "contact" }
+ { name: "FAQ", id: "/faq" },
+ { name: "Contacto", id: "/contact" }
]}
brandName="A mi manera"
bottomLeftText="Pastelería Artesanal"
@@ -151,38 +152,6 @@ export default function AmiManeraLanding() {
/>
-
-
-
-