Skip to content

Commit 896ea3a

Browse files
committed
feat: init hero section
1 parent 19d501e commit 896ea3a

File tree

23 files changed

+937
-2
lines changed

23 files changed

+937
-2
lines changed

next.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/** @type {import('next').NextConfig} */
22
import NextBundleAnalyzer from '@next/bundle-analyzer';
33

4-
let nextConfig = {};
4+
let nextConfig = {
5+
images: {
6+
domains: ['innei.in'],
7+
},
8+
};
59

610
if (process.env.ANALYZE === 'true') {
711
nextConfig = NextBundleAnalyzer({

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,29 @@
1515
},
1616
"dependencies": {
1717
"@egoist/tailwindcss-icons": "^1.8.1",
18+
"@floating-ui/dom": "^1.6.11",
19+
"@floating-ui/react": "^0.26.25",
20+
"@floating-ui/react-dom": "^2.1.2",
1821
"@iconify-json/material-symbols": "^1.2.4",
1922
"@iconify-json/mingcute": "^1.2.1",
2023
"@next/bundle-analyzer": "^14.2.15",
2124
"@types/chroma-js": "^2.4.4",
2225
"@types/pngjs": "^6.0.5",
2326
"@types/prettier": "^3.0.0",
2427
"chroma-js": "^3.1.2",
28+
"clsx": "^2.1.1",
2529
"colorjs.io": "^0.5.2",
2630
"daisyui": "^4.12.13",
31+
"floating-ui": "^5.2.8",
32+
"framer-motion": "11.11.1",
2733
"next": "14.2.15",
2834
"next-themes": "^0.3.0",
2935
"pngjs": "^7.0.0",
3036
"postcss-js": "^4.0.1",
3137
"prettier": "3.3.2",
3238
"react": "^18",
3339
"react-dom": "^18",
40+
"tailwind-merge": "^2.5.4",
3441
"tailwind-scrollbar": "^3.1.0",
3542
"tailwind-variants": "^0.2.1",
3643
"tailwindcss-animate": "^1.0.7",

pnpm-lock.yaml

Lines changed: 104 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/image/owner.jpg

34.3 KB
Loading

src/app/(app)/(home)/layout.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import type { PropsWithChildren } from 'react';
2+
3+
export default function HomeLayout({ children }: PropsWithChildren) {
4+
return <div>{children}</div>;
5+
}

0 commit comments

Comments
 (0)