Skip to content

Commit 88bff39

Browse files
Merge branch 'main' into dependabot/npm_and_yarn/npm_and_yarn-3d1d89fb29
2 parents c303ed2 + af2177d commit 88bff39

9 files changed

Lines changed: 575 additions & 78 deletions

File tree

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev --turbopack",
7-
"build": "NEXT_TELEMETRY_DISABLED=1 next build --turbopack",
6+
"dev": "next dev --turbopack",
7+
"build": "next build --turbopack",
88
"start": "next start",
99
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
1010
"type-check": "tsc --noEmit",
@@ -21,7 +21,7 @@
2121
"class-variance-authority": "^0.7.1",
2222
"clsx": "^2.1.1",
2323
"gray-matter": "^4.0.3",
24-
"next": "15.5.4",
24+
"next": "15.5.9",
2525
"react": "19.1.0",
2626
"react-dom": "19.1.0",
2727
"tailwind-merge": "^3.3.1"
219 KB
Loading
105 KB
Loading
Lines changed: 114 additions & 0 deletions
Loading

src/app/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { Stack } from "@/components/ui/stack"
66
import { Logo } from "@/components/ui/logo"
77
import { ArrowRightIcon, GitHubLogoIcon } from "@radix-ui/react-icons"
88
import ProjectsSection from "@/components/home/projects-section"
9+
import ProductsSection from "@/components/home/products-section"
910
import TeamMembersSection from "@/components/home/team-members-section"
10-
import TeamsSection from "@/components/home/teams-section"
1111

1212
export default function Home() {
1313
return (
@@ -95,11 +95,11 @@ export default function Home() {
9595
{/* Projects Section */}
9696
<ProjectsSection className="bg-background" />
9797

98+
{/* Products Section */}
99+
<ProductsSection className="bg-muted/30" />
100+
98101
{/* Team Members Section */}
99102
<TeamMembersSection className="bg-muted/20" />
100-
101-
{/* Teams Section */}
102-
<TeamsSection className="bg-background" />
103103
</>
104104
)
105105
}

0 commit comments

Comments
 (0)