initial commit

This commit is contained in:
Altair-sh
2025-03-18 20:11:30 +05:00
commit 94582a522b
17 changed files with 1170 additions and 0 deletions

BIN
src/app/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

67
src/app/globals.css Normal file
View File

@@ -0,0 +1,67 @@
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
@font-face {
font-family: 'Hack';
font-weight: normal;
font-style: normal;
src: url('/fonts/hack-v3.003/Hack-Regular.ttf');
}
@font-face {
font-family: 'Hack';
font-weight: bold;
font-style: normal;
src: url('/fonts/hack-v3.003/Hack-Bold.ttf');
}
@font-face {
font-family: 'Hack';
font-weight: normal;
font-style: italic;
src: url('/fonts/hack-v3.003/Hack-Italic.ttf');
}
@font-face {
font-family: 'Hack';
font-weight: bold;
font-style: italic;
src: url('/fonts/hack-v3.003/Hack-BoldItalic.ttf');
}
body {
color: var(--foreground);
background: var(--background);
font-family: 'Hack';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
}

22
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Metadata } from 'next'
import './globals.css'
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<head>
<title>Nyanberg - Paradox Games Save Viewer</title>
</head>
<body>{children}</body>
</html>
)
}

0
src/app/page.module.css Normal file
View File

10
src/app/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
import Image from 'next/image'
import styles from './page.module.css'
export default function Home() {
return (
<div className={styles.page}>
<p>Hiii :3</p>
</div>
)
}