diff --git a/app/globals.css b/app/globals.css index 13d40b8..b5c61c9 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,27 +1,3 @@ @tailwind base; @tailwind components; @tailwind utilities; - -:root { - --background: #ffffff; - --foreground: #171717; -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - -body { - color: var(--foreground); - background: var(--background); - font-family: Arial, Helvetica, sans-serif; -} - -@layer utilities { - .text-balance { - text-wrap: balance; - } -} diff --git a/app/page.tsx b/app/page.tsx index 087876c..9124169 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -4,17 +4,12 @@ export default function Home() { return (
-

- Next.js Starter template -

-

- Template de configuration d'un projet Next.Js avec Typescript, - ESLint, Prettier, Husky, Docker, scopes de commit personnalisés et - Lint Staged. -

+
@@ -37,23 +32,19 @@ export default function Home() { Donner une étoile au répo - - - -
); } + +const BlockQuote = ({ quote, author }: { quote: string; author: string }) => { + return ( +
+

{quote}

+

+ {author} +

+
+ ); +}; diff --git a/tailwind.config.ts b/tailwind.config.ts index ce9d9a7..df28b11 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -8,10 +8,7 @@ const config: Config = { ], theme: { extend: { - colors: { - background: 'var(--background)', - foreground: 'var(--foreground)', - }, + colors: {}, }, }, plugins: [],