feat: update landing app with shadcnI integration
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import { type Metadata } from 'next';
|
||||
import { description, title } from '../data/metadata.json';
|
||||
import '../styles/globals.css';
|
||||
|
||||
export const metadata: Metadata = { title, description };
|
||||
export const metadata: Metadata = {
|
||||
title: 'IMPHNEN',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
import { Button } from '@imphnen-frontend-service/shadcn-ui/atoms';
|
||||
|
||||
export default function Page() {
|
||||
return <></>;
|
||||
return (
|
||||
<>
|
||||
<h1 className="text-2xl underline">Hello World</h1>
|
||||
<Button>Click Me</Button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"title": "IMPHNEN",
|
||||
"description": ""
|
||||
}
|
||||
@@ -1 +1,4 @@
|
||||
@import 'tailwindcss';
|
||||
@import "tw-animate-css";
|
||||
@import "../../../../libs/shadcn-ui/src/index.css";
|
||||
@source "../../../../libs/shadcn-ui/src/atoms/**/*.{ts,tsx}";
|
||||
|
||||
Reference in New Issue
Block a user