Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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!
2 changes: 2 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
allowBuilds:
sharp: true
12 changes: 8 additions & 4 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
}

Expand Down
9 changes: 8 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -28,7 +35,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="en" className={raleway.variable}>
<head>
<script
type="application/ld+json"
Expand Down
3 changes: 1 addition & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ export default function Home() {
label: "Documentation",
variant: "secondary",
external: true,
title:
"Look here for either contributing or hosting your own web proxy service using our various open-source projects!",
title: "Look here for either contributing or hosting your own web proxy service using our various open-source projects!",
},
]}
/>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function Nav() {
[
</span>
<span
className="mx-1.5 align-middle text-white/82 transition-colors duration-150 ease-out group-hover:text-white"
className="mx-1.5 align-middle text-white/82 transition-colors duration-150 ease-out group-hover:text-white font-['Raleway'] tracking-normal"
style={
isHomeActive
? {
Expand All @@ -97,7 +97,7 @@ export default function Nav() {
: undefined
}
>
TITANIUMNETWORK
TitaniumNetwork
</span>
<span
className="align-middle text-3xl text-white/70 [text-shadow:0_0_0_transparent] transition-[color,text-shadow] duration-150 ease-out group-hover:text-[color-mix(in_oklab,var(--primary)_72%,white_28%)] group-hover:[text-shadow:0_0_1px_color-mix(in_oklab,var(--primary)_58%,white_42%)]"
Expand Down