revert
This commit is contained in:
@@ -19,9 +19,9 @@
|
|||||||
--radius-sm: 6px;
|
--radius-sm: 6px;
|
||||||
--shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
|
--shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
|
||||||
|
|
||||||
--font-display: var(--font-archivo, "Archivo Expanded"), "Archivo", system-ui, sans-serif;
|
--font-display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
|
||||||
--font-body: var(--font-body, "Inter"), system-ui, -apple-system, sans-serif;
|
--font-body: "Inter", system-ui, -apple-system, sans-serif;
|
||||||
--font-mono: var(--font-mono, "Geist Mono"), "SFMono-Regular", ui-monospace, monospace;
|
--font-mono: "Geist Mono", "SFMono-Regular", ui-monospace, monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||||
@@ -63,7 +63,6 @@ a { color: inherit; text-decoration: none; }
|
|||||||
.brand { display: flex; align-items: baseline; gap: 12px; }
|
.brand { display: flex; align-items: baseline; gap: 12px; }
|
||||||
.brand-mark {
|
.brand-mark {
|
||||||
font-family: var(--font-display);
|
font-family: var(--font-display);
|
||||||
font-stretch: expanded;
|
|
||||||
font-weight: 800; letter-spacing: -0.02em;
|
font-weight: 800; letter-spacing: -0.02em;
|
||||||
font-size: clamp(20px, 3vw, 28px);
|
font-size: clamp(20px, 3vw, 28px);
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@@ -116,8 +115,7 @@ a { color: inherit; text-decoration: none; }
|
|||||||
background: var(--bg-raised);
|
background: var(--bg-raised);
|
||||||
}
|
}
|
||||||
.group-name {
|
.group-name {
|
||||||
font-family: var(--font-display); font-stretch: expanded;
|
font-family: var(--font-display); font-weight: 800; font-size: 16px;
|
||||||
font-weight: 800; font-size: 16px;
|
|
||||||
text-transform: uppercase; letter-spacing: 0.02em;
|
text-transform: uppercase; letter-spacing: 0.02em;
|
||||||
}
|
}
|
||||||
.group-name.group-complete { color: var(--turf); }
|
.group-name.group-complete { color: var(--turf); }
|
||||||
|
|||||||
@@ -1,30 +1,7 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import Script from "next/script";
|
import Script from "next/script";
|
||||||
import { Archivo, Inter, Geist_Mono } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const archivo = Archivo({
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["500", "700", "800"],
|
|
||||||
style: ["normal", "italic"],
|
|
||||||
variable: "--font-archivo",
|
|
||||||
display: "swap",
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["400", "500", "600", "700"],
|
|
||||||
variable: "--font-body",
|
|
||||||
display: "swap",
|
|
||||||
});
|
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["400", "500", "600"],
|
|
||||||
variable: "--font-mono",
|
|
||||||
display: "swap",
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "WM 26 — Gruppen & K.o.-Baum",
|
title: "WM 26 — Gruppen & K.o.-Baum",
|
||||||
description:
|
description:
|
||||||
@@ -38,8 +15,15 @@ export const viewport = {
|
|||||||
|
|
||||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
return (
|
return (
|
||||||
<html lang="de" className={`${archivo.variable} ${inter.variable} ${geistMono.variable}`}>
|
<html lang="de">
|
||||||
<head />
|
<head>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" />
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Archivo:wght@500;700;800&family=Archivo+Expanded:wght@700;800&family=Inter:wght@400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{children}
|
{children}
|
||||||
{process.env.NEXT_PUBLIC_UMAMI_SRC && process.env.NEXT_PUBLIC_UMAMI_ID && (
|
{process.env.NEXT_PUBLIC_UMAMI_SRC && process.env.NEXT_PUBLIC_UMAMI_ID && (
|
||||||
|
|||||||
Reference in New Issue
Block a user