diff --git a/src/app/social-makeup/page.tsx b/src/app/social-makeup/page.tsx new file mode 100644 index 0000000..2f3fdc6 --- /dev/null +++ b/src/app/social-makeup/page.tsx @@ -0,0 +1,253 @@ +"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 PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Sparkles, Heart, Palette } from 'lucide-react'; + +export default function SocialMakeupPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file