Compare commits

...

1 Commits

Author SHA1 Message Date
bc47a53a07 Updated links and added discord 2026-01-12 20:06:49 +01:00
3 changed files with 18 additions and 1 deletions

10
package-lock.json generated
View File

@@ -12,6 +12,7 @@
"lucide-react": "^0.300.0", "lucide-react": "^0.300.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-snowfall": "^2.4.0" "react-snowfall": "^2.4.0"
}, },
"devDependencies": { "devDependencies": {
@@ -2236,6 +2237,15 @@
"integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/react-icons": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz",
"integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==",
"license": "MIT",
"peerDependencies": {
"react": "*"
}
},
"node_modules/react-refresh": { "node_modules/react-refresh": {
"version": "0.17.0", "version": "0.17.0",
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",

View File

@@ -13,6 +13,7 @@
"lucide-react": "^0.300.0", "lucide-react": "^0.300.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-snowfall": "^2.4.0" "react-snowfall": "^2.4.0"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -1,13 +1,19 @@
import { Github, Mail } from 'lucide-react'; import { Github, Mail } from 'lucide-react';
import { FaDiscord } from 'react-icons/fa';
export const NAV_LINKS = ['Home', 'Projects', 'Team']; export const NAV_LINKS = ['Home', 'Projects', 'Team'];
export const SOCIALS = [ export const SOCIALS = [
{ {
name: "GitHub", name: "GitHub",
link: "https://github.com/LiquidDevelopmentDE/", link: "https://github.liquid-dev.de",
icon: Github icon: Github
}, },
{
name: "Discord",
link: "https://discord.liquid-dev.de",
icon: FaDiscord
},
{ {
name: "E-Mail", name: "E-Mail",
link: "hello@liquid-dev.de", link: "hello@liquid-dev.de",