Merge version_3 into main #12

Merged
bender merged 2 commits from version_3 into main 2026-03-07 10:34:44 +00:00
2 changed files with 13 additions and 50 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
});
import "./styles/variables.css";
import "./styles/base.css";
export const metadata: Metadata = {
title: "Beast Fitness Studio - Premium Luxury Gym Bangalore", description: "Elite fitness studio in Manyata with spotless equipment, peaceful zones, and expert trainers. Calm luxury for serious lifters and beginners.", keywords: "premium gym Bangalore, luxury fitness studio, Manyata gym, strength training, cardio gym, personal trainers", metadataBase: new URL("https://beastfitness.com"),
alternates: {
canonical: "https://beastfitness.com"},
openGraph: {
title: "Beast Fitness Studio - Train in Luxury Calm", description: "Premium fitness studio with separate cardio & strength zones, expert trainers, and peaceful environment.", url: "https://beastfitness.com", siteName: "Beast Fitness Studio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/tattooed-muscular-strong-bearded-man-work-out-cardio-bicycle-gym-near-big-window-with-view-trees-outside_343596-2637.jpg", alt: "Beast Fitness Studio Premium Gym"},
],
},
twitter: {
card: "summary_large_image", title: "Beast Fitness Studio - Premium Luxury Gym", description: "Experience calm luxury fitness with expert guidance and pristine equipment.", images: ["http://img.b2bpic.net/free-photo/tattooed-muscular-strong-bearded-man-work-out-cardio-bicycle-gym-near-big-window-with-view-trees-outside_343596-2637.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Beast Fitness Studio | Premium Gym", description: "Elite fitness experience in a calm, premium space. Transform your body with supportive trainers and world-class equipment."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -27,7 +27,8 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Beast Fitness"
brandName="Beast Fitness Studio"
brandLogo="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXVMILqsNsTV8Mb26BNglJ9u4S/uploaded-1772879635533-xwr8vub7.png"
navItems={[
{ name: "Why Us", id: "features" },
{ name: "Amenities", id: "amenities" },
@@ -235,7 +236,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterCard
logoText="Beast Fitness"
logoText="Beast Fitness Studio"
copyrightText="© 2025 Beast Fitness Studio. All rights reserved."
socialLinks={[
{
@@ -255,4 +256,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}