3 Commits

2 changed files with 13 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Sparkles, Package, Zap, Star, CreditCard, Crown, Smartphone, HelpCircle, Mail } from "lucide-react";
import TeamSection from '@/components/sections/team/TeamSection';
export default function LandingPage() {
return (
@@ -235,6 +236,15 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamSection title="Our iPhone Experts" description="Meet the team behind the scenes at iPhone Store, dedicated to bringing you the best in iPhone accessories and support." teamMembers={[
{name: "John Doe", role: "Head of Accessories", image: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"},
{name: "Jane Smith", role: "Customer Support Lead", image: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"},
{name: "Mike Johnson", role: "Product Manager", image: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"},
{name: "Emily Davis", role: "Marketing Specialist", image: "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"}
]} />
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="iPhone Store"

View File

@@ -43,7 +43,7 @@ const HeroOverlay = ({
tag,
tagIcon,
buttons,
imageSrc,
imageSrc = "https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1920&q=80",
videoSrc,
imageAlt = "",
videoAriaLabel = "Hero video",
@@ -69,10 +69,11 @@ const HeroOverlay = ({
<section
aria-label={ariaLabel}
className={cls("relative w-full h-svh overflow-hidden flex flex-col justify-end", className)}
style={{ backgroundImage: `url(${imageSrc})` }}
>
<div className={cls("absolute inset-0 w-full h-full", mediaWrapperClassName)}>
{showDimOverlay && (
<div className={cls("absolute top-0 left-0 w-full h-full bg-background/20 pointer-events-none select-none", dimOverlayClassName)} />
<div className={cls("absolute top-0 left-0 w-full h-full bg-green-500/20 pointer-events-none select-none", dimOverlayClassName)} />
)}
<MediaContent
imageSrc={imageSrc}