Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c672df956a | |||
| e4e95f069b | |||
| e21008db79 | |||
| 85879b587c | |||
| 7a1cebe089 | |||
| a8fc6a8d7b |
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FitZone - Premium Gym & Fitness Classes", description: "Transform your fitness journey at FitZone. Expert trainers, diverse classes, and a supportive community. Join today and achieve your goals!", keywords: "gym, fitness classes, personal training, strength training, yoga, cardio, fitness community", openGraph: {
|
||||
title: "FitZone - Your Fitness Transformation Starts Here", description: "Premium gym with expert trainers, diverse classes, and supportive community. Transform your body and mind.", type: "website", siteName: "FitZone", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg", alt: "FitZone gym fitness training"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FitZone - Premium Gym & Fitness", description: "Transform your fitness journey with expert trainers and a supportive community.", images: ["http://img.b2bpic.net/free-photo/young-woman-practices-aerial-anti-gravity-yoga_1153-4840.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "FitZone - Transform Your Fitness", description: "Join FitZone, the ultimate fitness community with expert trainers, diverse classes, and a supportive environment."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { Activity, Dumbbell, Flame, Heart, Sparkles, Users, Zap } from "lucide-react";
|
||||
import { Activity, Dumbbell, Flame, Heart, Sparkles, Users, Zap, Star } from "lucide-react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
||||
@@ -116,7 +116,7 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "basic", price: "$29/month", name: "Basic", buttons: [
|
||||
id: "basic", price: "$29/month", name: "Basic", badge: "Perfect for Getting Started", badgeIcon: Star, buttons: [
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#" },
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user