5 Commits

Author SHA1 Message Date
d9c8ee8f34 Update theme fonts 2026-05-08 11:50:10 +00:00
7f4b68f3d2 Update theme fonts 2026-05-08 11:50:09 +00:00
7887ac7a88 Update src/app/page.tsx 2026-05-08 11:48:25 +00:00
0609151f7f Merge version_1 into main
Merge version_1 into main
2026-05-08 11:39:28 +00:00
4aa38536a1 Merge version_1 into main
Merge version_1 into main
2026-05-08 11:38:59 +00:00
3 changed files with 9 additions and 7 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Raleway } from "next/font/google";
import { Manrope } from "next/font/google";
@@ -21,8 +22,9 @@ export const metadata: Metadata = {
},
};
const raleway = Raleway({
variable: "--font-raleway",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
@@ -34,7 +36,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${raleway.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{ variant: "sparkles-gradient" }}
title="BLUE MOON 게스트하우스"
title="태백에서의 완벽한 휴식, 블루문 스테이"
description="태백의 조용한 밤, 깨끗한 침구, 깊은 휴식을 위한 프라이빗 스테이. 여행과 출장 사이, 가장 편안한 하루를 위한 공간입니다."
tag="Taebaek Premium Stay"
buttons={[
@@ -186,4 +186,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

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