Skip to content

Commit 41ab7ba

Browse files
committed
feat: tabs and video background
1 parent 0cde56e commit 41ab7ba

22 files changed

+800
-353
lines changed

next.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { NextConfig } from 'next'
2+
import path from 'path';
23

34
const config: NextConfig = {
45
output: 'export',
@@ -7,6 +8,11 @@ const config: NextConfig = {
78
},
89
assetPrefix: process.env.NODE_ENV === 'production' ? '/' : '/',
910
trailingSlash: true,
11+
webpack: (config) => {
12+
config.resolve.alias['@radix-ui/react-tabs'] = path.resolve(__dirname, 'node_modules/@radix-ui/react-tabs');
13+
return config;
14+
},
15+
1016
}
1117

1218
export default config

package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,26 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev --turbopack",
6+
"dev": "next dev",
77
"build": "next build",
88
"start": "next start",
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@maptiler/sdk": "^3.0.1",
1213
"@radix-ui/react-slot": "^1.1.1",
14+
"@radix-ui/react-tabs": "^1.1.2",
1315
"class-variance-authority": "^0.7.1",
1416
"clsx": "^2.1.1",
15-
"leaflet": "^1.9.4",
17+
"framer-motion": "^12.1.0",
1618
"lucide-react": "^0.474.0",
17-
"mapbox-gl": "^3.9.4",
1819
"next": "15.1.6",
1920
"react": "^19.0.0",
2021
"react-dom": "^19.0.0",
21-
"react-leaflet": "^5.0.0",
2222
"tailwind-merge": "^3.0.1",
2323
"tailwindcss-animate": "^1.0.7"
2424
},
2525
"devDependencies": {
26-
"@types/leaflet": "^1.9.16",
27-
"@types/mapbox-gl": "^3.4.1",
2826
"@types/node": "^20.17.16",
2927
"@types/react": "^19",
3028
"@types/react-dom": "^19",

0 commit comments

Comments
 (0)