updated configs and global css

This commit is contained in:
2026-04-13 13:28:24 +03:30
parent 0cae4c1902
commit aaecdbfccd
3 changed files with 32 additions and 29 deletions

View File

@@ -1 +1,17 @@
@import "tailwindcss";
@import 'tailwindcss';
*,
*::before,
*::after,
*::-webkit-scrollbar {
box-sizing: border-box;
}
* {
-ms-overflow-style: none;
scrollbar-width: none;
}
*::-webkit-scrollbar {
display: none;
}

View File

@@ -1,9 +1,8 @@
export default function Home() {
return (
<main style={{ padding: 40 }}>
<main>
<h1>Offline Next.js Template 🚀</h1>
<p>This project was generated completely offline.</p>
</main>
);
)
}