7 Commits

Author SHA1 Message Date
00c796f861 Merge version_2 into main
Merge version_2 into main
2026-04-06 03:47:51 +00:00
725e960481 Remove watermark 2026-04-06 03:47:48 +00:00
d0a6d8ccf5 Merge version_2 into main
Merge version_2 into main
2026-04-06 02:45:00 +00:00
f8e711ce74 Update src/app/page.tsx 2026-04-06 02:44:57 +00:00
7eaf327674 Merge version_1 into main
Merge version_1 into main
2026-04-06 02:39:20 +00:00
5068ec7c8a Merge version_1 into main
Merge version_1 into main
2026-04-06 02:38:57 +00:00
b6cd36e89b Merge version_1 into main
Merge version_1 into main
2026-04-06 02:38:26 +00:00
2 changed files with 16 additions and 26 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
@@ -35,7 +34,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -7,7 +7,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
@@ -28,22 +28,18 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home", id: "#hero"},
{
name: "Services", id: "#services"},
{
name: "Why Us", id: "#why-us"},
{
name: "Testimonials", id: "#testimonials"},
{
name: "Contact", id: "#contact"},
{ name: "Home", id: "#hero" },
{ name: "Services", id: "#services" },
{ name: "Why Us", id: "#why-us" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Contact", id: "#contact" },
]}
brandName="Super Boost Gym"
button={{
text: "Free Trial", href: "https://wa.me/971564379911"}}
text: "Free Trial", href: "https://wa.me/971564379911"
}}
/>
</div>
@@ -89,16 +85,11 @@ export default function LandingPage() {
src: "http://img.b2bpic.net/free-photo/cheerful-boxer-looking-camera_171337-20044.jpg", alt: "User 5"},
]}
marqueeItems={[
{
type: "text", text: "24/7 Support"},
{
type: "text", text: "Expert Coaching"},
{
type: "text", text: "Modern Equipment"},
{
type: "text", text: "Al Barsha Location"},
{
type: "text", text: "Results Guaranteed"},
{ type: "text", text: "24/7 Support" },
{ type: "text", text: "Expert Coaching" },
{ type: "text", text: "Modern Equipment" },
{ type: "text", text: "Al Barsha Location" },
{ type: "text", text: "Results Guaranteed" },
]}
/>
</div>
@@ -261,4 +252,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}