feat: initial commit
This commit is contained in:
12
src/app/(pages)/home/page.tsx
Normal file
12
src/app/(pages)/home/page.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { siteConfig } from '@/site.config';
|
||||
|
||||
const Home = async () => {
|
||||
return (
|
||||
<div className='flex flex-col items-center justify-center'>
|
||||
<h1 className='mb-4 text-4xl font-bold'>Home</h1>
|
||||
<p className='text-lg'>Welcome {siteConfig.name}!</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
||||
Reference in New Issue
Block a user