diff --git a/src/app/glamorous-evening-makeup/page.tsx b/src/app/glamorous-evening-makeup/page.tsx new file mode 100644 index 0000000..4e8e1a2 --- /dev/null +++ b/src/app/glamorous-evening-makeup/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, Eye, Palette, Wand2 } from 'lucide-react'; + +export default function GlamorousEveningMakeupPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file