Add basic frontend app

Signed-off-by: Felipe Cardoso <felipe.cardoso@hotmail.it>
This commit is contained in:
2025-01-23 11:08:24 +01:00
parent c3e9a84cbf
commit 11b92803e5
6 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -17,7 +17,7 @@ export default function Home() {
<li className="mb-2">
Get started by editing{" "}
<code className="bg-black/[.05] dark:bg-white/[.06] px-1 py-0.5 rounded font-semibold">
app/page.tsx
src/app/page.tsx
</code>
.
</li>

View File

@@ -2,9 +2,9 @@ import type {Config} from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {

View File

@@ -24,7 +24,7 @@
],
"paths": {
"@/*": [
"./*"
"./src/*"
]
}
},