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 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, 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