diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 8ea2c15..d8c51ee 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import ProductDiscoverySection from './HomePage/sections/ProductDiscovery';export default function HomePage(): React.JSX.Element { +import ProductDiscoverySection from './HomePage/sections/ProductDiscovery'; +import ClientLogosSection from './HomePage/sections/ClientLogos';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/ClientLogos.tsx b/src/pages/HomePage/sections/ClientLogos.tsx new file mode 100644 index 0000000..3cac349 --- /dev/null +++ b/src/pages/HomePage/sections/ClientLogos.tsx @@ -0,0 +1,27 @@ +import LoopCarousel from "@/components/ui/LoopCarousel"; + +export default function ClientLogosSection() { + return ( + + + + Featured in top publications + + + + + + {["VOGUE", "GQ", "HARPER'S BAZAAR", "ELLE", "ESQUIRE", "VANITY FAIR", "HYPEBEAST", "HIGHSNOBIETY"].map((logo, index) => ( + + {logo} + + ))} + + + + + ); +} \ No newline at end of file
+ Featured in top publications +