Compare commits
6 Commits
version_7_
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
36661602df | ||
| f1324c3acc | |||
|
|
307f8aae69 | ||
| 103f1ac138 | |||
|
|
1808eaeb59 | ||
| 0a555cebf0 |
@@ -14,6 +14,9 @@ import ContactSection from './HomePage/sections/Contact';
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/* webild-stub @2026-06-03T15:01:45.386Z: Increase the spacing from the side of each element on the hero section like the rest of the site */}
|
||||||
|
|
||||||
{/* webild-stub @2026-06-03T14:38:48.425Z: Fix the spacing and buttons on the first section. */}
|
{/* webild-stub @2026-06-03T14:38:48.425Z: Fix the spacing and buttons on the first section. */}
|
||||||
|
|
||||||
{/* webild-stub @2026-06-03T14:26:17.945Z: Make the hero section smoothly switch between 4 images, with a loading animation in between each image transition. */}
|
{/* webild-stub @2026-06-03T14:26:17.945Z: Make the hero section smoothly switch between 4 images, with a loading animation in between each image transition. */}
|
||||||
|
|||||||
@@ -38,8 +38,8 @@ export default function HeroSection(): React.JSX.Element {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div id="hero" data-webild-section="hero" className="relative w-full pt-24 pb-12 px-6">
|
<div id="hero" data-webild-section="hero" className="relative w-full pt-24 pb-12 px-4 sm:px-6 lg:px-8">
|
||||||
<div className="max-w-6xl mx-auto mb-12">
|
<div className="container mx-auto mb-12">
|
||||||
<h1 className="text-6xl md:text-8xl font-bold tracking-tight mb-8 text-center">
|
<h1 className="text-6xl md:text-8xl font-bold tracking-tight mb-8 text-center">
|
||||||
Innovate Marketing
|
Innovate Marketing
|
||||||
</h1>
|
</h1>
|
||||||
@@ -50,18 +50,14 @@ export default function HeroSection(): React.JSX.Element {
|
|||||||
Your Vision, Amplified. We craft data-driven strategies and compelling narratives to elevate your brand and drive measurable results. Let's grow together.
|
Your Vision, Amplified. We craft data-driven strategies and compelling narratives to elevate your brand and drive measurable results. Let's grow together.
|
||||||
</p>
|
</p>
|
||||||
<div className="flex items-center justify-end gap-4">
|
<div className="flex items-center justify-end gap-4">
|
||||||
<a href="#services" className="inline-flex items-center justify-center h-10 px-4 py-2 bg-primary text-primary-foreground hover:bg-primary/90 rounded-full font-medium transition-colors">
|
<Button href="#services" text="Our Services" variant="primary" />
|
||||||
Our Services
|
<Button href="#contact" text="Contact Us" variant="secondary" />
|
||||||
</a>
|
|
||||||
<a href="#contact" className="inline-flex items-center justify-center h-10 px-4 py-2 bg-secondary text-secondary-foreground hover:bg-secondary/80 rounded-full font-medium transition-colors">
|
|
||||||
Contact Us
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="w-full max-w-6xl mx-auto relative rounded-3xl overflow-hidden aspect-[16/9] md:aspect-[21/9] shadow-2xl bg-muted">
|
<div className="w-full container mx-auto relative rounded-3xl overflow-hidden aspect-[16/9] md:aspect-[21/9] shadow-2xl bg-muted">
|
||||||
{IMAGES.map((src, index) => (
|
{IMAGES.map((src, index) => (
|
||||||
<div
|
<div
|
||||||
key={src}
|
key={src}
|
||||||
|
|||||||
Reference in New Issue
Block a user