Venture Builder, Business Analyst, Full-Stack Developer
const contact = () => {
linkedin: "https://www.linkedin.com/in/danirogerc",
github: "https://github.com/danirogerc",
};
const life = () => {
const languages = ["English", "Spanish", "French", "Catalan"];
const nationalities = ["Spanish"];
return { languages, nationalities };
};
const education = () => {
const degrees = {
bachelor: ["BBA in Business and Management"],
postgraduate: ["Full-Stack software Engineer by Tripleten"],
other_certifications: [],
};
return degrees;
};
const coding = () => {
const fullstack = {
frontend: ["HTML", "CSS", "JavaScript", "React", "React Router", "Next.js"],
backend: ["Node.js", "Supabase", "Prisma"],
cloud: ["Supabase"],
tools: ["Figma", "Vite", "npm", "Postman", "Vercel"],
};
const environment = ["VSCode", "Cursor", "GitHub"];
return { fullstack, environment };
};
export { contact, life, education, coding };