diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..b4bfed357 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-tailwindcss"] +} diff --git a/app/global.css b/app/global.css new file mode 100644 index 000000000..577f1336d --- /dev/null +++ b/app/global.css @@ -0,0 +1,5 @@ +@import '../styles/color.css'; +@import '../styles/reset.css'; +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 000000000..aa381e463 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,18 @@ +import QueryProvider from "@/ui/providers/queryProvider"; +import "./global.css"; +import Footer from "@/components/Footer/Footer"; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} +