feat: ✨ install PandaCSS and ArkUI
parent
ab5cd05b55
commit
e03c6a1067
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,20 @@
|
|||||||
|
import { defineConfig } from "@pandacss/dev";
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
// Whether to use css reset
|
||||||
|
preflight: true,
|
||||||
|
|
||||||
|
// Where to look for your css declarations
|
||||||
|
include: ["./src/**/*.{js,jsx,ts,tsx}", "./pages/**/*.{js,jsx,ts,tsx}"],
|
||||||
|
|
||||||
|
// Files to exclude
|
||||||
|
exclude: [],
|
||||||
|
|
||||||
|
// Useful for theme customization
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
|
||||||
|
// The output directory for your css system
|
||||||
|
outdir: "styled-system",
|
||||||
|
});
|
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
'@pandacss/dev/postcss': {},
|
||||||
|
},
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
import "./globals.css";
|
||||||
|
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
|
|
||||||
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
|
|
||||||
|
export const metadata = {
|
||||||
|
title: "Create Next App",
|
||||||
|
description: "Generated by create next app",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<html lang="en">
|
||||||
|
<body className={inter.className}>{children}</body>
|
||||||
|
</html>
|
||||||
|
);
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
@layer reset, base, tokens, recipes, utilities;
|
Loading…
Reference in New Issue