Switch to version 1: remove src/pages/HomePage/sections/Hero.tsx

This commit is contained in:
2026-06-13 20:57:48 +00:00
parent 331b29214b
commit 97ec72b94e

View File

@@ -1,28 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBrand
brand="Apex Athletics"
description="Built for Performance. Designed for Everyday."
primaryButton={{
text: "Shop Shorts",
href: "/shop",
}}
secondaryButton={{
text: "Learn More",
href: "/about",
}}
imageSrc="https://ae01.alicdn.com/kf/S5502a39b359f4f358645d94726487e41q/Pantalones-cortos-deportivos-de-secado-r-pido-para-hombre-Shorts-de-entrenamiento-para-correr-Fitness-gimnasio.jpg"
/>
</SectionErrorBoundary>
</div>
);
}