Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-05-13 12:48:28 +00:00
2 changed files with 10 additions and 11 deletions

View File

@@ -6,20 +6,21 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
export const metadata: Metadata = { title: 'Roohi Beauty Bae | Premium Korean Skincare & Glow Workshops', description: 'Discover the secret to glass skin with Roohi Beauty Bae. Shop curated Korean skincare essentials and join our exclusive beauty workshops for a radiant glow.', openGraph: { title: 'Roohi Beauty Bae | Premium Korean Skincare', description: 'Curated Korean skincare products, beauty workshops & glowing skin essentials.', type: 'website' } };
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = { title: 'Roohi Beauty Bae | Premium Korean Skincare & Glow Workshops', description: 'Discover the secret to glass skin with Roohi Beauty Bae. Shop curated Korean skincare essentials and join our exclusive beauty workshops for a radiant glow.', openGraph: { title: 'Roohi Beauty Bae | Premium Korean Skincare', description: 'Curated Korean skincare products, beauty workshops & glowing skin essentials.', type: 'website' } };
export default function RootLayout({
children,
}: Readonly<{
@@ -28,9 +29,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-public-sans), sans-serif;
}