// app/page.tsx 'use client'; import Link from 'next/link'; import { FaCamera, FaCode, FaTree, FaVolleyballBall } from 'react-icons/fa'; import { TbCube3dSphere } from 'react-icons/tb'; import Image from 'next/image'; export default function Home() { const calculateAge = (birthDateString: string): number => { const today = new Date(); const birthDate = new Date(birthDateString); let age = today.getFullYear() - birthDate.getFullYear(); const monthDiff = today.getMonth() - birthDate.getMonth(); if (monthDiff < 0 || (monthDiff === 0 && today.getDate() < birthDate.getDate())) { age--; } return age; }; return (
{/* 1. HERO SECTION */}
{/* Ambient Overlay for contrast */}
Logo

Technical High School Engineer

William Söderberg

View Portfolios
{/* 2. ABOUT ME SECTION */}

About Me

Identity & Background

William Söderberg

William Söderberg

EST. 2002 | SWEDEN

DATA CARD

My name is William Söderberg and I'm {calculateAge("2002-07-17")} years old. I have a degree in technical high school engineering specialized in design and industrial manufacturing, with heavy influence from IT and coding. I love problem solving and finding new ways to solve the most complicated problems. Currently studying Computer Science at LTH in Lund.

Focus

Industrial Design & IT

Passions

Volleyball & Computers

{/* 3. WHAT DO I DO SECTION */}
Leaves

What do I do?

A multidisciplinary engineer

{[ { icon: , title: 'Volleyball', desc: '8 Years going strong! Currently playing middle blocker with the Elite team in Lund. Mother club is Lerbergets volleybollsällskap.' }, { icon: , title: 'Young Ranger', desc: 'Part of the Youth+ Network at Europarc Federation, working in management at Kullaberg.' }, { icon: , title: 'Photography', desc: 'Capturing nature and people, finding the best subjects to save.' }, { icon: , title: 'CAD', desc: 'Specialized in design and manufacturing, modeling everything from concepts to architecture.' }, { icon: , title: 'Coding', desc: 'Developing automation scripts and custom programs to solve unique problems. Check out my portfolio!' } ].map((item, idx) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* 4. PHOTO GALLERY SECTION */}

Photography

Capturing the world

My Photos

My Photos

Night Sky

My Photography collection

Taking photos is just one of my many hobbies. Finding the best motives to capture, from nature to the night skies.

More photos
Singapore

A cloudy day in Singapore, the New Zealand trip 2019.

Expedition 019
{/* 5. CONTACT CALL-TO-ACTION */}
Snowy Mountains

Let's Connect

Contact info & Socials

Contact Me
); }