Compare commits

...

2 commits

11 changed files with 49 additions and 54 deletions

2
.gitignore vendored
View file

@ -39,3 +39,5 @@ yarn-error.log*
# typescript # typescript
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts next-env.d.ts
/base/

View file

@ -31,6 +31,6 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next
## Deploy on Vercel ## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Fuck vercel, i ain't using github
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

View file

@ -1,3 +1,7 @@
allowBuilds:
core-js: true
sharp: true
unrs-resolver: true
ignoredBuiltDependencies: ignoredBuiltDependencies:
- sharp - sharp
- unrs-resolver - unrs-resolver

Binary file not shown.

Binary file not shown.

BIN
public/pfp.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View file

@ -1,27 +1,17 @@
@import "tailwindcss"; @import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap');
:root { @font-face {
--background: #ffffff; font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
--foreground: #171717; font-family: "Bitcount";
} font-style: normal;
font-weight: 300;
@theme inline { src:
--color-background: var(--background); url("/fonts/bitcount-v3-latin-300.woff2") format("woff2"),
--color-foreground: var(--foreground); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
--font-sans: var(--font-geist-sans); url("/fonts/bitcount-v3-latin-300.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
} }
body { body {
background: var(--background); background: var(--color-gray-950);
color: var(--foreground); color: var(--color-gray-950);
font-family: Arial, Helvetica, sans-serif;
} }

View file

@ -1,21 +1,16 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Bitcount } from "next/font/google";
import "./globals.css"; import "./globals.css";
import Header from "@/components/header" import Header from "@/components/header";
const geistSans = Geist({ const bitCount = Bitcount({
variable: "--font-geist-sans", variable: "--font-bitcount",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"], subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", title: "unemployment heaven",
description: "Generated by create next app", description: "AI sucks. but who cares, i'll never let it take my job",
}; };
export default function RootLayout({ export default function RootLayout({
@ -24,13 +19,11 @@ export default function RootLayout({
children: React.ReactNode; children: React.ReactNode;
}>) { }>) {
return ( return (
<html <html lang="en" className={`${bitCount.variable} h-full antialiased`}>
lang="en" <head></head>
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col"> <body className="min-h-full flex flex-col">
<Header /> <Header />
{children} <div className="content-center flex">{children}</div>
</body> </body>
</html> </html>
); );

7
src/app/legal/page.tsx Normal file
View file

@ -0,0 +1,7 @@
export default function Legal() {
return (
<div className="flex ">
<div className="w-3/5 h-200 bg-gray-700 border-gray-600 border rounded-xl"></div>
</div>
);
}

View file

@ -1,7 +1,5 @@
h1 { @import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@352&display=swap");
font-family: "Noto Sans Mono", monospace;
font-weight: 545; pagetitle {
font-style: normal; font-family: "Bitcount Grid Double", system-ui;
font-variation-settings: }
"wdth" 92.5;
}

View file

@ -1,13 +1,14 @@
import "./header.css" import "./header.css";
import Image from "next/image"
function Header() { function Header() {
return( return (
<> <div className="items-center header flex flex-row w-100% h-20 border-b-solid border-b-gray-700 border-b-2 bg-gray-900 " id="header container">
<div className="header flex w-100% h-17"> <Image height={256} width={256} src="/pfp.png" className="ml-3.5 animate-[spin_3s_linear_infinite] rounded-full basis-15 h-15" id="pfp" alt="pfp"/>
<h1 className="h-16 text-2xl font-bold text-white">PERIODICBRAKE</h1> <h1 className="ml-3.5 pagetitle text-4xl text-bold text-white font-[Bitcount]" id="page-title">PERIODICBRAKE</h1>
</div> <div className="basis-auto" id="header-separator"/>
</> </div>
) );
} }
export default Header; export default Header;