6 Commits

Author SHA1 Message Date
ca3c36311c Merge version_8 into main
Merge version_8 into main
2026-03-04 03:19:56 +00:00
037a76d3c9 Update src/app/page.tsx 2026-03-04 03:19:51 +00:00
1d67143399 Update src/app/layout.tsx 2026-03-04 03:19:51 +00:00
4905aac7f3 Merge version_7 into main
Merge version_7 into main
2026-03-04 03:14:10 +00:00
7dfb0b20d6 Update src/app/page.tsx 2026-03-04 03:14:05 +00:00
4984a79fb9 Merge version_6 into main
Merge version_6 into main
2026-03-04 03:08:52 +00:00
2 changed files with 7 additions and 8 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import { Figtree } 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"],
@@ -48,11 +47,13 @@ export default function RootLayout({
}>) {
return (
<html lang="en" suppressHydrationWarning>
<head>
<script async src="https://webuild-tags.vercel.app/tag.js" data-website-id="c25bbf6f-ac27-4baf-a8c9-f8fb2f79a26f"></script>
</head>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -1425,4 +1426,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,7 +1,7 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
@@ -25,7 +25,7 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarStyleApple
navItems={[
{ name: "Features", id: "features" },
{ name: "About", id: "about" },
@@ -34,8 +34,6 @@ export default function LandingPage() {
{ name: "Download", id: "hero" }
]}
brandName="Khamsa"
bottomLeftText="Faith Consistency"
bottomRightText="hello@khamsa.app"
/>
</div>
@@ -211,4 +209,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}