Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-15 12:01:57 +00:00
4 changed files with 71 additions and 30 deletions

View File

@@ -92,7 +92,7 @@ export default function ContactPage() {
inputPlaceholder="Enter your email"
buttonText="Subscribe Now"
termsText="By subscribing, you agree to receive promotional emails from FitHub. You can unsubscribe anytime."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-sporty-women-taking-selfie_23-2149161248.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-sporty-women-taking-selfie_23-2149161248.jpg?_wi=2"
imageAlt="Fitness community connection"
/>
</div>
@@ -115,7 +115,7 @@ export default function ContactPage() {
name: "Jessica Martinez",
handle: "@jessicagains",
testimonial: "Best online gym store I've found. Quality equipment, great prices, and shipping was incredibly fast. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-posing-sportswear-isolated-gray_7502-8038.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-posing-sportswear-isolated-gray_7502-8038.jpg?_wi=2",
imageAlt: "Jessica Martinez",
},
{
@@ -123,7 +123,7 @@ export default function ContactPage() {
name: "Alex Thompson",
handle: "@alextransforms",
testimonial: "The variety is amazing. I found everything I was looking for and discovered new brands too. Customer service is exceptional.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-strong-fashionable-sporty-sportive-muscular-man_158595-4629.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-strong-fashionable-sporty-sportive-muscular-man_158595-4629.jpg?_wi=2",
imageAlt: "Alex Thompson",
},
{
@@ -131,7 +131,7 @@ export default function ContactPage() {
name: "Rachel Kim",
handle: "@rachellifts",
testimonial: "As a personal trainer, I've recommended FitHub to all my clients. The quality and selection are unmatched.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149517345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149517345.jpg?_wi=2",
imageAlt: "Rachel Kim",
},
{
@@ -139,7 +139,7 @@ export default function ContactPage() {
name: "Michael Torres",
handle: "@michaelperforms",
testimonial: "Great prices compared to specialty stores. Equipment arrived in perfect condition. This is now my primary source.",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-exercising-gym_23-2149517250.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-exercising-gym_23-2149517250.jpg?_wi=2",
imageAlt: "Michael Torres",
},
{
@@ -147,7 +147,7 @@ export default function ContactPage() {
name: "Emma Wilson",
handle: "@emmafitness",
testimonial: "Love the wide range of sizes and styles in apparel. Found my perfect fit and the quality is outstanding.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-slender-girl-black-fitting-clothing-posing-white_231208-4043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-slender-girl-black-fitting-clothing-posing-white_231208-4043.jpg?_wi=2",
imageAlt: "Emma Wilson",
},
{
@@ -155,7 +155,7 @@ export default function ContactPage() {
name: "James Chen",
handle: "@jamesathlete",
testimonial: "The supplement selection and prices are unbeatable. Been a loyal customer for two years now.",
imageSrc: "http://img.b2bpic.net/free-photo/grass-sunny-european-father-nature_1157-3228.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/grass-sunny-european-father-nature_1157-3228.jpg?_wi=2",
imageAlt: "James Chen",
},
]}

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Archivo } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FitHub - Premium Gym Equipment, Apparel & Supplements",
description: "Your one-stop fitness superstore. Shop premium gym equipment, performance apparel, supplements, and accessories. Fast shipping, expert support, and guaranteed quality.",
keywords: "gym equipment, fitness gear, workout apparel, supplements, protein powder, fitness accessories, home gym, strength training",
metadataBase: new URL("https://fithub.com"),
alternates: {
canonical: "https://fithub.com",
},
openGraph: {
title: "FitHub - Premium Gym Equipment & Fitness Gear",
description: "Everything you need to crush your fitness goals. Premium equipment, apparel, supplements, and accessories all in one place.",
url: "https://fithub.com",
siteName: "FitHub",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/medical-mask-gym-equipment-with-weights_23-2148766073.jpg",
alt: "Premium gym equipment at FitHub",
},
],
},
twitter: {
card: "summary_large_image",
title: "FitHub - Premium Fitness Superstore",
description: "Shop premium gym equipment, apparel, supplements & accessories. Fast shipping & expert support.",
images: [
"http://img.b2bpic.net/free-photo/medical-mask-gym-equipment-with-weights_23-2148766073.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -288,7 +288,7 @@ export default function HomePage() {
name: "Strength Training Essentials",
price: "From $99.99",
variant: "Multiple options",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-perfectly-ordered-fitness-items_23-2150321814.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-perfectly-ordered-fitness-items_23-2150321814.jpg?_wi=1",
imageAlt: "Strength training equipment collection",
},
{
@@ -296,7 +296,7 @@ export default function HomePage() {
name: "Cardio Equipment",
price: "From $399.99",
variant: "Multiple options",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-out-gym_23-2148197794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-out-gym_23-2148197794.jpg?_wi=1",
imageAlt: "Cardio equipment collection",
},
{
@@ -304,7 +304,7 @@ export default function HomePage() {
name: "Performance Apparel",
price: "From $29.99",
variant: "All sizes",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-handrail_23-2147678135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-handrail_23-2147678135.jpg?_wi=1",
imageAlt: "Fitness apparel collection",
},
{
@@ -312,7 +312,7 @@ export default function HomePage() {
name: "Premium Supplements",
price: "From $19.99",
variant: "Multiple flavors",
imageSrc: "http://img.b2bpic.net/free-photo/sportive-woman-holding-plastic-bottle_23-2148138009.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sportive-woman-holding-plastic-bottle_23-2148138009.jpg?_wi=1",
imageAlt: "Premium supplements collection",
},
]}
@@ -337,7 +337,7 @@ export default function HomePage() {
name: "Jessica Martinez",
handle: "@jessicagains",
testimonial: "Best online gym store I've found. Quality equipment, great prices, and shipping was incredibly fast. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-posing-sportswear-isolated-gray_7502-8038.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sportswoman-posing-sportswear-isolated-gray_7502-8038.jpg?_wi=1",
imageAlt: "Jessica Martinez",
},
{
@@ -345,7 +345,7 @@ export default function HomePage() {
name: "Alex Thompson",
handle: "@alextransforms",
testimonial: "The variety is amazing. I found everything I was looking for and discovered new brands too. Customer service is exceptional.",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-strong-fashionable-sporty-sportive-muscular-man_158595-4629.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/attractive-strong-fashionable-sporty-sportive-muscular-man_158595-4629.jpg?_wi=1",
imageAlt: "Alex Thompson",
},
{
@@ -353,7 +353,7 @@ export default function HomePage() {
name: "Rachel Kim",
handle: "@rachellifts",
testimonial: "As a personal trainer, I've recommended FitHub to all my clients. The quality and selection are unmatched.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149517345.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-gym_23-2149517345.jpg?_wi=1",
imageAlt: "Rachel Kim",
},
{
@@ -361,7 +361,7 @@ export default function HomePage() {
name: "Michael Torres",
handle: "@michaelperforms",
testimonial: "Great prices compared to specialty stores. Equipment arrived in perfect condition. This is now my primary source.",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-exercising-gym_23-2149517250.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-exercising-gym_23-2149517250.jpg?_wi=1",
imageAlt: "Michael Torres",
},
{
@@ -369,7 +369,7 @@ export default function HomePage() {
name: "Emma Wilson",
handle: "@emmafitness",
testimonial: "Love the wide range of sizes and styles in apparel. Found my perfect fit and the quality is outstanding.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-slender-girl-black-fitting-clothing-posing-white_231208-4043.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-slender-girl-black-fitting-clothing-posing-white_231208-4043.jpg?_wi=1",
imageAlt: "Emma Wilson",
},
{
@@ -377,7 +377,7 @@ export default function HomePage() {
name: "James Chen",
handle: "@jamesathlete",
testimonial: "The supplement selection and prices are unbeatable. Been a loyal customer for two years now.",
imageSrc: "http://img.b2bpic.net/free-photo/grass-sunny-european-father-nature_1157-3228.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/grass-sunny-european-father-nature_1157-3228.jpg?_wi=1",
imageAlt: "James Chen",
},
]}

View File

@@ -61,7 +61,7 @@ export default function ProductsPage() {
name: "Strength Training Essentials",
price: "From $99.99",
variant: "Multiple options",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-perfectly-ordered-fitness-items_23-2150321814.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-perfectly-ordered-fitness-items_23-2150321814.jpg?_wi=2",
imageAlt: "Strength training equipment collection",
},
{
@@ -69,7 +69,7 @@ export default function ProductsPage() {
name: "Cardio Equipment",
price: "From $399.99",
variant: "Multiple options",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-out-gym_23-2148197794.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-working-out-gym_23-2148197794.jpg?_wi=2",
imageAlt: "Cardio equipment collection",
},
{
@@ -77,7 +77,7 @@ export default function ProductsPage() {
name: "Performance Apparel",
price: "From $29.99",
variant: "All sizes",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-handrail_23-2147678135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-handrail_23-2147678135.jpg?_wi=2",
imageAlt: "Fitness apparel collection",
},
{
@@ -85,7 +85,7 @@ export default function ProductsPage() {
name: "Premium Supplements",
price: "From $19.99",
variant: "Multiple flavors",
imageSrc: "http://img.b2bpic.net/free-photo/sportive-woman-holding-plastic-bottle_23-2148138009.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sportive-woman-holding-plastic-bottle_23-2148138009.jpg?_wi=2",
imageAlt: "Premium supplements collection",
},
]}
@@ -140,7 +140,7 @@ export default function ProductsPage() {
inputPlaceholder="Enter your email"
buttonText="Subscribe Now"
termsText="By subscribing, you agree to receive promotional emails from FitHub. You can unsubscribe anytime."
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-sporty-women-taking-selfie_23-2149161248.jpg"
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-sporty-women-taking-selfie_23-2149161248.jpg?_wi=1"
imageAlt="Fitness community connection"
/>
</div>