diff --git a/app/page.tsx b/app/page.tsx
index 5e563f2..25eaad5 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -17,5 +17,9 @@ export default async function Index() {
const isSupabaseConnected = canInitSupabaseClient();
- return <>>;
+ return (
+ <>
+
hello
+ >
+ );
}
diff --git a/package.json b/package.json
index 706ea90..26a8565 100644
--- a/package.json
+++ b/package.json
@@ -15,6 +15,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
+ "tailwindcss-animate": "^1.0.7",
"typescript": "5.1.3"
},
"devDependencies": {
diff --git a/postcss.config.js b/postcss.config.js
index 12a703d..f46b31c 100644
--- a/postcss.config.js
+++ b/postcss.config.js
@@ -1,6 +1,3 @@
module.exports = {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
+ plugins: ["tailwindcss", "autoprefixer"],
};