Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# Environment variables
.env
.env.local
.env.production
2,145 changes: 1,471 additions & 674 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.14.0",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
Expand All @@ -30,6 +31,7 @@
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
Expand Down
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
plugins: {
tailwindcss: {},
'@tailwindcss/postcss': {},
autoprefixer: {},
},
}
Binary file added public/images/dozer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/influencers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/netlify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/portal_influencers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/starcheck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/videos/cosmicbowling.mp4
Binary file not shown.
19 changes: 9 additions & 10 deletions src/assets/css/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";


@keyframes float-slow {
0%,
Expand Down Expand Up @@ -200,13 +199,13 @@ pre[class*="language-"] {
}
}

@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
* {
border-color: hsl(var(--color-border));
}

body {
background-color: hsl(var(--color-background));
color: hsl(var(--color-foreground));
}
/* Add these classes to adjust the grid colors in the top-left and bottom-right */
.top-left-grid {
Expand Down
40 changes: 20 additions & 20 deletions src/components/globe.jsx
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
import IconCloud from "./ui/icon-cloud";

const slugs = [
"typescript",
"javascript",
"dart",
"java",
"php",
"mysql",
"react",
"flutter",
"android",
"sass",
"laravel",
"html5",
"css3",
"nodedotjs",
"express",
"nextdotjs",
"prisma",
"amazonaws",
"postgresql",
"css",
"vuedotjs",
"codeigniter",
"firebase",
"tailwindcss",
"vite",
"firebase",
"nginx",
"vercel",
"testinglibrary",
"jest",
"cypress",
"docker",
"cpanel",
"paypal",
"postman",
"git",
"jira",
"notion",
"github",
"gitlab",
"visualstudiocode",
"androidstudio",
"sonarqube",
"jquery",
"wordpress",
"bootstrap",
"figma",
"vuetify",
"clickup",
"visa"
];

function IconCloudDemo() {
Expand Down
Loading