diff --git a/src/app/facial-hydration/page.tsx b/src/app/facial-hydration/page.tsx new file mode 100644 index 0000000..1d55565 --- /dev/null +++ b/src/app/facial-hydration/page.tsx @@ -0,0 +1,215 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Sparkles, Droplet, Wind, Heart } from 'lucide-react'; + +export default function FacialHydrationPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file