Merge version_1_1781379025677 into main

Merge version_1_1781379025677 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-06-13 19:34:26 +00:00

View File

@@ -7,6 +7,7 @@ import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
import PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards';
import TeamListCards from '@/components/sections/team/TeamListCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import FooterSimpleMedia from '@/components/sections/footer/FooterSimpleMedia';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
@@ -181,6 +182,21 @@ export default function HomePage() {
/>
</SectionErrorBoundary>
</div>
<div id="footer" data-section="footer">
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Reshape Fitness"
columns={[
{ title: "Gym", items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#features" }, { label: "Pricing", href: "#pricing" }] },
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Location", href: "#map" }, { label: "WhatsApp", href: "https://wa.me/923466222228" }] }
]}
copyright="© 2024 Reshape Gym, Multan. All rights reserved."
links={[{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-vector/minimal-style-abstract-branding-icon-template-collection_1017-51604.jpg"
/>
</SectionErrorBoundary>
</div>
</>
);
}