diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d60dc9e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "files.exclude": { + "**/.next": true + }, + "files.associations": { + + } +} diff --git a/app/components/page.tsx b/app/components/page.tsx index cb8febd..c224199 100644 --- a/app/components/page.tsx +++ b/app/components/page.tsx @@ -1,8 +1,26 @@ import styles from './style.module.css' - +import PowerBy from '@/components/power-by' const Home = () => { - return
-

Home

+ return
+

Components

+
+

Power By

+ +
+ +
+

Button

+
+ +
+

Input

+
+ +
+

Chat Bubble

+
+ +
Select
} diff --git a/app/components/style.module.css b/app/components/style.module.css index 7542451..ccd54dc 100644 --- a/app/components/style.module.css +++ b/app/components/style.module.css @@ -1,3 +1,3 @@ -.red { - color: red; +.container { + @apply flex min-h-screen p-24 flex-col gap-4; } diff --git a/components/power-by/index.tsx b/components/power-by/index.tsx index e69de29..f70023b 100644 --- a/components/power-by/index.tsx +++ b/components/power-by/index.tsx @@ -0,0 +1,16 @@ +import Image from 'next/image' + +const PowerBy = () => { + return + power by + Dify.AI Logo + +} + +export default PowerBy diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..800a070 Binary files /dev/null and b/public/logo.png differ