5 Commits

Author SHA1 Message Date
9bbe45f982 Update src/app/page.tsx 2026-03-04 16:13:59 +00:00
2fe5138ecd Update src/app/layout.tsx 2026-03-04 16:13:58 +00:00
62c4d27928 Switch to version 1: modified src/app/layout.tsx 2026-03-04 16:13:10 +00:00
7f3dad8937 Update src/app/layout.tsx 2026-03-04 16:13:09 +00:00
d9166ca378 Merge version_1 into main
Merge version_1 into main
2026-03-04 16:12:31 +00:00
2 changed files with 3 additions and 8 deletions

View File

@@ -1,16 +1,10 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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"],
});
@@ -40,7 +34,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
className={`${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -51,7 +51,8 @@ export default function StorePage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Shop Now", href: "#products"}}
text: "Shop Now", href: "#products"
}}
/>
</div>