Revert "style: update font to Urbanist and enlarge header logo"
This reverts commit 682083e79d.
This commit is contained in:
parent
682083e79d
commit
5b2607175a
|
|
@ -76,7 +76,7 @@
|
|||
}
|
||||
|
||||
@theme inline {
|
||||
--font-sans: "Urbanist", "Urbanist Fallback", system-ui, sans-serif;
|
||||
--font-sans: "Inter", "Inter Fallback", system-ui, sans-serif;
|
||||
--font-mono: "Geist Mono", "Geist Mono Fallback";
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
import type React from "react"
|
||||
import type { Metadata } from "next"
|
||||
import { Urbanist, JetBrains_Mono } from "next/font/google"
|
||||
import { Inter, JetBrains_Mono } from "next/font/google"
|
||||
import "./globals.css"
|
||||
|
||||
const urbanist = Urbanist({
|
||||
const inter = Inter({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-sans",
|
||||
})
|
||||
|
|
@ -54,7 +54,7 @@ export default function RootLayout({
|
|||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${urbanist.variable} ${jetBrainsMono.variable} font-sans antialiased`}>
|
||||
<body className={`${inter.variable} ${jetBrainsMono.variable} font-sans antialiased`}>
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -7,15 +7,15 @@ export function Header() {
|
|||
<header className="fixed top-0 left-0 right-0 z-50">
|
||||
<EventBanner />
|
||||
<div className="bg-background/80 backdrop-blur-sm border-b border-border">
|
||||
<div className="container mx-auto px-6 py-5">
|
||||
<div className="container mx-auto px-6 py-4">
|
||||
<div className="flex items-center justify-between">
|
||||
<Link href="/" className="flex items-center gap-4">
|
||||
<Link href="/" className="flex items-center gap-3">
|
||||
<Image
|
||||
src="/images/cca-logo.png"
|
||||
alt="Crypto Commons Association"
|
||||
width={72}
|
||||
height={72}
|
||||
className="h-16 w-auto"
|
||||
width={48}
|
||||
height={48}
|
||||
className="h-12 w-auto"
|
||||
/>
|
||||
<div className="text-2xl font-mono font-bold tracking-tight">CCA</div>
|
||||
</Link>
|
||||
|
|
|
|||
Loading…
Reference in New Issue