Merge version_4_1782031175418 into main
Merge version_4_1782031175418 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -13,10 +13,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element {
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ClientLogosSection from './HomePage/sections/ClientLogos';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<HeroSection />
|
||||
<ClientLogosSection />
|
||||
|
||||
<AboutSection />
|
||||
|
||||
|
||||
28
src/pages/HomePage/sections/ClientLogos.tsx
Normal file
28
src/pages/HomePage/sections/ClientLogos.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
export default function ClientLogos() {
|
||||
const logos = [
|
||||
"Microsoft",
|
||||
"Google",
|
||||
"Amazon",
|
||||
"Meta",
|
||||
"OpenAI",
|
||||
"Nvidia"
|
||||
];
|
||||
|
||||
return (
|
||||
<section data-webild-section="client-logos" id="client-logos" className="relative w-full py-12 bg-background">
|
||||
<div className="w-content-width mx-auto">
|
||||
<p className="text-center text-sm font-medium text-accent mb-8 uppercase tracking-widest">
|
||||
Trusted by industry leaders
|
||||
</p>
|
||||
<div className="flex flex-wrap justify-center items-center gap-8 md:gap-16">
|
||||
{logos.map((logo, idx) => (
|
||||
<div key={idx} className="flex items-center justify-center">
|
||||
<span className="text-2xl font-bold text-foreground/40">{logo}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user