diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ef39126..b7677dc 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,7 +7,7 @@ import FooterMinimal from "@/components/sections/footer/FooterMinimal"; export default function Layout() { return ( - + /sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + import { motion } from "motion/react"; import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import HeroWorkScrollStack from "@/components/sections/hero/HeroWorkScrollStack"; -import AboutTestimonialParallax from "@/components/sections/about/AboutTestimonialParallax"; -import FeaturesBentoGridCta from "@/components/sections/features/FeaturesBentoGridCta"; -import FaqTabbedAccordion from "@/components/sections/faq/FaqTabbedAccordion"; -import ContactSplitFormParallax from "@/components/sections/contact/ContactSplitFormParallax"; import LoaderReveal from "@/components/ui/LoaderReveal"; import CornerGlowBackground from "@/components/ui/CornerGlowBackground"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import TestimonialSection from './HomePage/sections/Testimonial'; +import AboutSection from './HomePage/sections/About'; +import ServicesSection from './HomePage/sections/Services'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - + - + -
- -
+ -
- -
+ - + -
- -
+
diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index d04b60f..afd5cbe 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -12,7 +12,7 @@ export default function AboutSection(): React.JSX.Element { quote="I don't design to decorate — I design to solve. Sharp, intentional work that moves brands forward." author="Joseph Alexander" role="Independent Designer" - imageSrc="https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp" + imageSrc="https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp?_wi=2" socialLinks={[ { icon: "Twitter", label: "Twitter", href: "#" }, { icon: "Linkedin", label: "LinkedIn", href: "#" }, diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx index f443e8b..a1fb02d 100644 --- a/src/pages/HomePage/sections/Faq.tsx +++ b/src/pages/HomePage/sections/Faq.tsx @@ -50,7 +50,7 @@ export default function FaqSection(): React.JSX.Element { }, ]} cta={{ - imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp", + imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp?_wi=3", name: "More questions? Reach out anytime.", role: "joseph@alexandercreative.com", buttonText: "Book a call", diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index f1e8d15..1178357 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -8,19 +8,43 @@ export default function HeroSection(): React.JSX.Element { return (
+ heroAnimationDelay={4} + tag="1 spot left this month" + title="Design that" + titleHighlight="commands attention." + description="Design engineered for performance, not just aesthetics." + descriptionMuted="I craft every visual touchpoint your brand needs to capture attention and convert it into revenue." + primaryButton={{ + text: "Book a call with me", + href: "#contact", + avatarSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp", + avatarLabel: "You", + }} + sectionTag="Selected Work" + sectionTitle="Projects That Speak for Themselves" + sectionDescription="A curated selection of design work that drove real business results for ambitious brands." + items={[ + { + title: "HydroFlow Product Launch", + description: "Beverage brand shoot. Every frame engineered to sell.", + imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/screen-1.webp", + tag: "Product Shot", + }, + { + title: "Webild Athlete Campaign", + description: "Sports tech shoot. Wearables captured in raw motion.", + imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/screen-2.webp", + tag: "Photography", + }, + { + title: "Maru Residence", + description: "Architectural interior shoot. Minimal compositions.", + imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/screen-3.webp", + tag: "Interior Design", + }, + ]} + secondaryButton={{ text: "View all my projects", href: "#" }} + />
); } diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx index 398843f..9523117 100644 --- a/src/pages/HomePage/sections/Services.tsx +++ b/src/pages/HomePage/sections/Services.tsx @@ -8,12 +8,22 @@ export default function ServicesSection(): React.JSX.Element { return (
+ tag="Services" + title="What I Bring to the Table" + description="End-to-end creative services designed to make your brand impossible to ignore — from the first frame to the final pixel." + features={[ + { title: "Photography", description: "Art-directed shoots that capture your brand's personality. Every image is color-graded and built to stop the scroll.", imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/photography.webp" }, + { title: "Product Design", description: "User-centered interfaces for apps and SaaS products. From wireframe to pixel-perfect UI — intuitive experiences that keep users coming back.", imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/product-design.webp" }, + { title: "Website", description: "Conversion-focused websites that look sharp and perform. Clean layouts, strategic CTAs, and responsive design that turns traffic into revenue.", imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/website.webp" }, + { title: "Videos", description: "Brand films and product videos engineered for engagement. Story-driven visuals that convert viewers into customers.", imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/videos.webp" }, + ]} + ctaButton={{ + text: "Book a call with me", + href: "#contact", + avatarSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp", + avatarLabel: "You", + }} + />
); }