diff --git a/README.md b/README.md index be54d92..52fb47c 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ [Join our Discord!](https://discord.gg/unblock) -## TODO: This website needs a complete redesign! - #### Overview TitaniumNetwork is an organization dedicated to providing services related to bypassing internet censorship. Our projects provide users with a less restrictive browsing experience. For this TN prioritizes the production and improvement of web proxy technologies. @@ -49,5 +47,7 @@ A general list for any contributors. If you make a contribution add yourself her - Quite a Fancy Emerald - sexyduceduce - mdoryammilwalrus +- Crllect +- xmb9 If you wish to support TitaniumNetwork please check out our Discord! diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..520eb9a --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +allowBuilds: + sharp: true diff --git a/src/app/globals.css b/src/app/globals.css index e7546cd..09be5e6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -54,11 +54,15 @@ p { line-height: 1.68; } -h1, +h1 { + font-family: var(--font-raleway), "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif; + font-weight: 600; + font-style: normal; +} h2, h3 { color: var(--text); - font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; + font-family: "Avenir Next", "Seoge UI", "Helvetica Neue", sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 0.98; @@ -82,7 +86,7 @@ code { justify-content: center; padding: 0.34rem 0.62rem; color: var(--muted); - font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; + font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif; font-size: 0.95rem; font-weight: 400; letter-spacing: 0.08em; @@ -174,7 +178,7 @@ code { .legacy-stack { display: grid; gap: 1rem; - font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; + font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif; font-weight: 400; } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 60c602f..4d0595f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,14 @@ import { Metadata, Viewport } from "next"; import Nav from "../components/Nav"; +import { Raleway } from "next/font/google"; import "./globals.css"; +const raleway = Raleway({ + subsets: ["latin"], + weight: ["600"], + variable: "--font-raleway", +}); + export const metadata: Metadata = { title: "TitaniumNetwork", description: @@ -28,7 +35,7 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - +