Initial commit

This commit is contained in:
2025-12-18 14:54:10 +00:00
commit 8f1cd47c45
21 changed files with 418 additions and 0 deletions

41
src/data/content.js Normal file
View File

@@ -0,0 +1,41 @@
import { Github, Mail } from 'lucide-react';
export const NAV_LINKS = ['Home', 'Projects', 'Team'];
export const SOCIALS = {
github: "https://github.com/LiquidDevelopmentDE/",
email: "mailto:hello@liquid-dev.de"
};
export const TEAM_MEMBERS = [
{
name: "Felix",
nickname: "Flixcoo",
role: "FOUNDER",
role2: "DEVELOPER",
img: "https://github.com/flixcoo.png",
gh: "https://github.com/flixcoo",
email: "felix@liquid-dev.de",
website: "https://felixkirchner.de"
},
{
name: "Yannick",
nickname: "Gelbeinhalb",
role: "FOUNDER",
role2: "DEVELOPER",
img: "https://github.com/GelbEinhalb.png",
gh: "https://github.com/GelbEinhalb",
email: "yannick@liquid-dev.de",
website: "https://yannick-weigert.de"
},
{
name: "Mathis",
nickname: "Sneeex",
role: "FOUNDER",
role2: "DEVELOPER",
img: "https://github.com/mathiskir.png",
gh: "https://github.com/mathiskir",
email: "mathis@liquid-dev.de",
website: "https://mathiskirchner.de"
}
];