From b5dac773c8f42bd0643befc4d5a1d111b0a79485 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 22:09:49 +0000 Subject: [PATCH 1/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..44ff8a0 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,38 @@ +'use client'; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } + ]; + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file -- 2.49.1 From fa40684055e781e5cded043f5f21875f80f722df Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 22:09:50 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 67302d0..70c8fa3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -18,7 +18,7 @@ const inter = Inter({ subsets: ["latin"], }); -export const metadata: Metadata = { title: 'Chez Iyad | Beauté & Cosmétique à Ouled Fayet', description: 'Découvrez notre sélection exclusive de soins de luxe et cosmétiques chez Chez Iyad. Expertise conseil et rituels beauté personnalisés à Ouled Fayet.'excellence de la beauté chez Chez Iyad. Soins premium, K-Beauty et parfumerie d'exception. Prenez soin de votre beauté à Ouled Fayet, Cheraga.', openGraph: { title: 'Chez Iyad | Cosmétiques de Luxe & Soins à Ouled Fayet', description: 'Découvrez l'excellence de la beauté chez Chez Iyad. Soins premium, K-Beauty et parfumerie d'exception.', type: 'website' } }; +export const metadata: Metadata = { title: 'Webild Project', description: 'Professional web solutions.'excellence de la beauté chez Chez Iyad. Soins premium, K-Beauty et parfumerie d'exception. Prenez soin de votre beauté à Ouled Fayet, Cheraga.', openGraph: { title: 'Chez Iyad | Cosmétiques de Luxe & Soins à Ouled Fayet', description: 'Découvrez l'excellence de la beauté chez Chez Iyad. Soins premium, K-Beauty et parfumerie d'exception.', type: 'website' } }; export default function RootLayout({ children, -- 2.49.1 From 1f0c212263d22afcce4fcf913f01b7d9682215c2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 22:09:51 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 89 +++++++++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 51 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2d2fe5b..af147d1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,9 +1,9 @@ -"use client"; +'use client'; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; @@ -12,57 +12,44 @@ import BlogCardOne from '@/components/sections/blog/BlogCardOne'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import { Sparkles, Award, Beaker, Heart, HelpCircle, BookOpen, ShoppingBag, MapPin } from 'lucide-react'; +import Link from 'next/link'; + +export default function Page() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } + ]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1