Skip to content

Commit 35b278c

Browse files
authored
chore: Update page.js and package.json
1 parent fae4834 commit 35b278c

File tree

12 files changed

+705
-134
lines changed

12 files changed

+705
-134
lines changed

components.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": false,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/app/globals.css",
9+
"baseColor": "gray",
10+
"cssVariables": true
11+
},
12+
"aliases": {
13+
"utils": "@/lib/utils",
14+
"components": "@/components"
15+
}
16+
}

package-lock.json

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

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@radix-ui/react-icons": "^1.3.0",
13+
"@radix-ui/react-slot": "^1.1.0",
14+
"class-variance-authority": "^0.7.0",
1215
"clsx": "^2.1.1",
1316
"framer-motion": "^11.2.12",
17+
"lucide-react": "^0.399.0",
1418
"next": "14.2.4",
1519
"react": "^18",
1620
"react-dom": "^18",
17-
"tailwind-merge": "^2.3.0"
21+
"tailwind-merge": "^2.3.0",
22+
"tailwindcss-animate": "^1.0.7"
1823
},
1924
"devDependencies": {
2025
"eslint": "^8",

public/placeholder.svg

Lines changed: 1 addition & 0 deletions
Loading

src/app/page.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import Image from "next/image";
22
import { HeroScrollDemo } from "./_components/Hero";
3+
import { Main1 } from "@/components/main1";
34

45
export default function Home() {
56
return (
67
<>
7-
<div>
8-
<HeroScrollDemo />
8+
<div className=" w-full">
9+
{/* <HeroScrollDemo /> */}
10+
<Main1 />
911
</div>
1012
</>
1113
);

0 commit comments

Comments
 (0)