diff --git a/public/fonts/jgs7.ttf b/public/fonts/jgs7.ttf new file mode 100644 index 0000000..e065f96 Binary files /dev/null and b/public/fonts/jgs7.ttf differ diff --git a/public/fonts/jgs7.woff b/public/fonts/jgs7.woff new file mode 100644 index 0000000..c1dfee5 Binary files /dev/null and b/public/fonts/jgs7.woff differ diff --git a/public/fonts/jgs7.woff2 b/public/fonts/jgs7.woff2 new file mode 100644 index 0000000..27265a7 Binary files /dev/null and b/public/fonts/jgs7.woff2 differ diff --git a/public/jgs7.ttf b/public/jgs7.ttf new file mode 100644 index 0000000..8923a37 Binary files /dev/null and b/public/jgs7.ttf differ diff --git a/src/app/[locale]/page.tsx b/src/app/[locale]/page.tsx index 7250c96..d50acd9 100644 --- a/src/app/[locale]/page.tsx +++ b/src/app/[locale]/page.tsx @@ -40,9 +40,9 @@ export default function Home() {
-
-

{t.hero.title}

-

{t.hero.subtitle}

+
+

{t.hero.title}

+

{t.hero.subtitle}

@@ -69,7 +69,7 @@ export default function Home() {

{t.when.title}

-

{t.when.date}

+

{t.when.date}

{t.when.extra}

diff --git a/src/globals.css b/src/globals.css index cb35435..4ed18a6 100644 --- a/src/globals.css +++ b/src/globals.css @@ -2,6 +2,15 @@ @tailwind components; @tailwind utilities; +@font-face { + font-family: "JGS7"; + src: url("/fonts/jgs7.woff2") format("woff2"), + url("/fonts/jgs7.woff") format("woff"), + url("/fonts/jgs7.ttf") format("truetype"); + font-weight: normal; + font-style: normal; +} + html { @media (prefers-reduced-motion: no-preference) { scroll-behavior: smooth; @@ -72,9 +81,7 @@ html { --input: hsl(0 0% 14.9%); --ring: hsl(0 0% 83.1%); } -} -@layer base { * { @apply border-border; } @@ -89,3 +96,7 @@ html { .parallax-video { transition: transform 0.25s ease-out; } + +.jgs7 { + font-family: "JGS7" !important; +}