diff --git a/Frontend/README.md b/Frontend/README.md index c403366..433fd82 100644 --- a/Frontend/README.md +++ b/Frontend/README.md @@ -1,36 +1 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## 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. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +# ScoreSaber Tracker Frontend diff --git a/Frontend/public/next.svg b/Frontend/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/Frontend/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Frontend/public/vercel.svg b/Frontend/public/vercel.svg deleted file mode 100644 index d2f8422..0000000 --- a/Frontend/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Frontend/src/app/favicon.ico b/Frontend/src/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/Frontend/src/app/favicon.ico and /dev/null differ diff --git a/Frontend/src/app/layout.tsx b/Frontend/src/app/layout.tsx index 3314e47..a43f9a5 100644 --- a/Frontend/src/app/layout.tsx +++ b/Frontend/src/app/layout.tsx @@ -5,8 +5,8 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "BeatSaber Metrics", + description: "Tracking your BeatSaber progress, currently tracks ScoreSaber :)", }; export default function RootLayout({ diff --git a/Frontend/src/app/page.tsx b/Frontend/src/app/page.tsx index 2acfd44..97fb11e 100644 --- a/Frontend/src/app/page.tsx +++ b/Frontend/src/app/page.tsx @@ -1,113 +1,17 @@ -import Image from "next/image"; +import Link from "next/link"; export default function Home() { return ( -
-
-

- Get started by editing  - src/app/page.tsx -

-
- - By{" "} - Vercel Logo - -
-
+
+

BeatSaber Metrics

-
- Next.js Logo -
- -
- -

- Docs{" "} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{" "} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{" "} - - -> - -

-

- Explore starter templates for Next.js. -

-
- - -

- Deploy{" "} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+

this website is currently under construction

+ + Visit the API! +
); } diff --git a/Frontend/tailwind.config.ts b/Frontend/tailwind.config.ts index e9a0944..d9394d1 100644 --- a/Frontend/tailwind.config.ts +++ b/Frontend/tailwind.config.ts @@ -6,15 +6,7 @@ const config: Config = { "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], - theme: { - extend: { - backgroundImage: { - "gradient-radial": "radial-gradient(var(--tw-gradient-stops))", - "gradient-conic": - "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))", - }, - }, - }, + theme: {}, plugins: [], }; export default config;