Skip to content

Commit

Permalink
fix: we added the proper configuration, and the fixed the tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
AasaSingh05 committed Nov 6, 2024
1 parent e5106d9 commit e067860
Show file tree
Hide file tree
Showing 30 changed files with 3,839 additions and 642 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules/
/node_modules
/.pnp
.pnp.*
.yarn/*
Expand All @@ -16,7 +16,6 @@
# next.js
/.next/
/out/
next-env.d.ts

# production
/build
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/layout.tsx → app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import "../app/globals.css";

const geistSans = localFont({
src: "./fonts/GeistVF.woff",
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions src/app/page.js → app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ import { redirect } from 'next/navigation'

export default function Page() {
redirect('/landing')
return (
<p>yay this will never be seen :)</p>
);
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions next.config.js

This file was deleted.

7 changes: 7 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading

0 comments on commit e067860

Please sign in to comment.