Compare commits
2 commits
a24d037530
...
4c8dd84e82
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c8dd84e82 | ||
|
|
9aacd4caef |
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -39,3 +39,5 @@ yarn-error.log*
|
|||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
/base/
|
||||
|
|
@ -31,6 +31,6 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next
|
|||
|
||||
## 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.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
allowBuilds:
|
||||
core-js: true
|
||||
sharp: true
|
||||
unrs-resolver: true
|
||||
ignoredBuiltDependencies:
|
||||
- sharp
|
||||
- unrs-resolver
|
||||
|
|
|
|||
BIN
public/fonts/bitcount-v3-latin-300.ttf
Normal file
BIN
public/fonts/bitcount-v3-latin-300.ttf
Normal file
Binary file not shown.
BIN
public/fonts/bitcount-v3-latin-300.woff2
Normal file
BIN
public/fonts/bitcount-v3-latin-300.woff2
Normal file
Binary file not shown.
BIN
public/pfp.png
Executable file
BIN
public/pfp.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
|
|
@ -1,27 +1,17 @@
|
|||
@import "tailwindcss";
|
||||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap');
|
||||
|
||||
:root {
|
||||
--background: #ffffff;
|
||||
--foreground: #171717;
|
||||
}
|
||||
|
||||
@theme inline {
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
--font-sans: var(--font-geist-sans);
|
||||
--font-mono: var(--font-geist-mono);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #0a0a0a;
|
||||
--foreground: #ededed;
|
||||
}
|
||||
@font-face {
|
||||
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
|
||||
font-family: "Bitcount";
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src:
|
||||
url("/fonts/bitcount-v3-latin-300.woff2") format("woff2"),
|
||||
/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
|
||||
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+ */
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
background: var(--color-gray-950);
|
||||
color: var(--color-gray-950);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,21 +1,16 @@
|
|||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import { Bitcount } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import Header from "@/components/header"
|
||||
import Header from "@/components/header";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
const bitCount = Bitcount({
|
||||
variable: "--font-bitcount",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App",
|
||||
description: "Generated by create next app",
|
||||
title: "unemployment heaven",
|
||||
description: "AI sucks. but who cares, i'll never let it take my job",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
|
|
@ -24,13 +19,11 @@ export default function RootLayout({
|
|||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
||||
>
|
||||
<html lang="en" className={`${bitCount.variable} h-full antialiased`}>
|
||||
<head></head>
|
||||
<body className="min-h-full flex flex-col">
|
||||
<Header />
|
||||
{children}
|
||||
<div className="content-center flex">{children}</div>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
|
|
|||
7
src/app/legal/page.tsx
Normal file
7
src/app/legal/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
|
@ -1,7 +1,5 @@
|
|||
h1 {
|
||||
font-family: "Noto Sans Mono", monospace;
|
||||
font-weight: 545;
|
||||
font-style: normal;
|
||||
font-variation-settings:
|
||||
"wdth" 92.5;
|
||||
}
|
||||
@import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@352&display=swap");
|
||||
|
||||
pagetitle {
|
||||
font-family: "Bitcount Grid Double", system-ui;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
import "./header.css"
|
||||
import "./header.css";
|
||||
import Image from "next/image"
|
||||
|
||||
function Header() {
|
||||
return(
|
||||
<>
|
||||
<div className="header flex w-100% h-17">
|
||||
<h1 className="h-16 text-2xl font-bold text-white">PERIODICBRAKE</h1>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
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">
|
||||
<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="ml-3.5 pagetitle text-4xl text-bold text-white font-[Bitcount]" id="page-title">PERIODICBRAKE</h1>
|
||||
<div className="basis-auto" id="header-separator"/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Header;
|
||||
export default Header;
|
||||
|
|
|
|||
Loading…
Reference in a new issue