Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,240 changes: 817 additions & 423 deletions amour-next-ts/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion amour-next-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/postcss": "^4.1.12",
"@types/aos": "^3.0.7",
"@types/node": "^20",
"@types/react": "^19",
Expand Down
6 changes: 6 additions & 0 deletions amour-next-ts/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
"@tailwindcss/postcss": {},
autoprefixer: {},
},
};
3 changes: 2 additions & 1 deletion amour-next-ts/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ export default function RootLayout({
<head>
<ThemeScript />
</head>
<body className="font-body antialiased bg-background text-foreground">
<body className="font-body antialiased bg-background text-foreground"
suppressHydrationWarning>
<ClientLayout>
<Navbar />
{children}
Expand Down
Loading