first version

This commit is contained in:
2025-09-15 20:33:23 +02:00
commit 695a0a0a22
19 changed files with 2466 additions and 0 deletions

24
portfolio/.gitignore vendored Normal file
View File

@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

3
portfolio/.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}

5
portfolio/README.md Normal file
View File

@@ -0,0 +1,5 @@
# Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).

13
portfolio/index.html Normal file
View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

1296
portfolio/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
portfolio/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.18",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"vite": "^7.1.2"
}
}

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

28
portfolio/src/App.vue Normal file
View File

@@ -0,0 +1,28 @@
<script setup>
import Navbar from './components/Navbar.vue'
</script>
<template>
<div class="app">
<Navbar />
<router-view />
</div>
</template>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
overflow-x: hidden;
}
.app {
min-height: 100vh;
}
</style>

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>

After

Width:  |  Height:  |  Size: 496 B

View File

@@ -0,0 +1,43 @@
<script setup>
import { ref } from 'vue'
defineProps({
msg: String,
})
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<div class="card">
<button type="button" @click="count++">count is {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test HMR
</p>
</div>
<p>
Check out
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
>create-vue</a
>, the official Vue + Vite starter
</p>
<p>
Learn more about IDE Support for Vue in the
<a
href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
target="_blank"
>Vue Docs Scaling up Guide</a
>.
</p>
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>

View File

@@ -0,0 +1,156 @@
<template>
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<router-link to="/" class="logo-text">Niels</router-link>
</div>
<ul class="nav-menu" :class="{ active: isMenuOpen }">
<li class="nav-item">
<router-link to="/" class="nav-link" @click="closeMenu">Home</router-link>
</li>
<li class="nav-item">
<router-link to="/about" class="nav-link" @click="closeMenu">About</router-link>
</li>
<li class="nav-item">
<router-link to="/projects" class="nav-link" @click="closeMenu">Projects</router-link>
</li>
<li class="nav-item">
<router-link to="/contact" class="nav-link" @click="closeMenu">Contact</router-link>
</li>
</ul>
<div class="hamburger" :class="{ active: isMenuOpen }" @click="toggleMenu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
</template>
<script setup>
import { ref } from 'vue'
const isMenuOpen = ref(false)
const toggleMenu = () => {
isMenuOpen.value = !isMenuOpen.value
}
const closeMenu = () => {
isMenuOpen.value = false
}
</script>
<style scoped>
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(15, 15, 15, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
z-index: 1000;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(45deg, #64b5f6, #42a5f5);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
margin: 0;
}
.nav-link {
color: #ffffff;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover {
color: #64b5f6;
}
.nav-link.router-link-active {
color: #64b5f6;
}
.nav-link.router-link-active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(45deg, #64b5f6, #42a5f5);
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}
.bar {
width: 25px;
height: 3px;
background-color: #ffffff;
margin: 3px 0;
transition: 0.3s;
}
/* Mobile Styles */
@media (max-width: 768px) {
.hamburger {
display: flex;
}
.nav-menu {
position: fixed;
left: -100%;
top: 70px;
flex-direction: column;
background: rgba(15, 15, 15, 0.98);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
padding: 2rem 0;
}
.nav-menu.active {
left: 0;
}
.hamburger.active .bar:nth-child(2) {
opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
}
</style>

6
portfolio/src/main.js Normal file
View File

@@ -0,0 +1,6 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import router from './router'
createApp(App).use(router).mount('#app')

View File

@@ -0,0 +1,42 @@
import { createRouter, createWebHistory } from 'vue-router'
import Home from '../views/Home.vue'
import About from '../views/About.vue'
import Projects from '../views/Projects.vue'
import Contact from '../views/Contact.vue'
const routes = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/about',
name: 'About',
component: About
},
{
path: '/projects',
name: 'Projects',
component: Projects
},
{
path: '/contact',
name: 'Contact',
component: Contact
}
]
const router = createRouter({
history: createWebHistory(),
routes,
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return savedPosition
} else {
return { top: 0 }
}
}
})
export default router

79
portfolio/src/style.css Normal file
View File

@@ -0,0 +1,79 @@
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
body {
margin: 0;
display: flex;
place-items: center;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
}
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
.card {
padding: 2em;
}
#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}

View File

@@ -0,0 +1,35 @@
<template>
<div class="about">
<div class="container">
<h1>About Me</h1>
<p>More content coming soon...</p>
</div>
</div>
</template>
<script setup>
</script>
<style scoped>
.about {
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
padding: 6rem 2rem 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 2rem;
background: linear-gradient(45deg, #ffffff, #64b5f6);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>

View File

@@ -0,0 +1,35 @@
<template>
<div class="contact">
<div class="container">
<h1>Contact Me</h1>
<p>Get in touch - contact form coming soon...</p>
</div>
</div>
</template>
<script setup>
</script>
<style scoped>
.contact {
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
padding: 6rem 2rem 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 2rem;
background: linear-gradient(45deg, #ffffff, #64b5f6);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>

View File

@@ -0,0 +1,638 @@
<template>
<div class="home">
<!-- Animated Background Elements -->
<div class="background-elements">
<div class="floating-shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
</div>
<div class="grid-overlay"></div>
</div>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<!-- Enhanced Avatar with Glowing Effect -->
<div class="avatar-container">
<div class="avatar-glow"></div>
<div class="avatar">
<span class="avatar-text">NM</span>
<div class="avatar-ring"></div>
</div>
</div>
<!-- Main Content with Typing Animation -->
<div class="text-content">
<h1 class="hero-title">
<span class="line-1">Hi, I'm Niels</span>
</h1>
<h2 class="hero-subtitle">
<span class="typing-text" ref="typingText"></span>
<span class="cursor">|</span>
</h2>
<p class="hero-description">
Currently pursuing cybersecurity studies while crafting exceptional digital experiences
as a web designer and software developer at <span class="highlight">Stellarnode VOF</span>.
I'm passionate about merging security principles with innovative development practices
to build robust, user-centric applications.
</p>
<!-- Interactive Stats -->
<div class="stats-container">
<div class="stat-item">
<div class="stat-number">2+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat-item">
<div class="stat-number">24/7</div>
<div class="stat-label">Learning Mode</div>
</div>
</div>
<!-- Enhanced Buttons -->
<div class="hero-buttons">
<router-link to="/projects" class="btn btn-primary">
<span class="btn-text">Explore My Work</span>
<div class="btn-shine"></div>
</router-link>
<router-link to="/contact" class="btn btn-secondary">
<span class="btn-text">Let's Connect</span>
<div class="btn-particles"></div>
</router-link>
</div>
<!-- Tech Stack Icons -->
<div class="tech-stack">
<div class="tech-label">Tech Stack:</div>
<div class="tech-icons">
<div class="tech-icon" title="Vue.js">Vue</div>
<div class="tech-icon" title="React">React</div>
<div class="tech-icon" title="Node.js">Node</div>
<div class="tech-icon" title="Python">Python</div>
<div class="tech-icon" title="Cybersecurity">Security</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scroll Indicator -->
<div class="scroll-indicator">
<div class="scroll-arrow"></div>
<span class="scroll-text">Scroll Down</span>
</div>
</section>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue'
const typingText = ref(null)
onMounted(() => {
const texts = [
'Cybersecurity Student',
'Full Stack Developer',
'Security Enthusiast',
'Problem Solver',
'Creative Thinker'
]
let textIndex = 0
let charIndex = 0
let isDeleting = false
const typeEffect = () => {
const currentText = texts[textIndex]
if (!isDeleting) {
typingText.value.textContent = currentText.substring(0, charIndex + 1)
charIndex++
if (charIndex === currentText.length) {
isDeleting = true
setTimeout(typeEffect, 2000) // Pause before deleting
return
}
} else {
typingText.value.textContent = currentText.substring(0, charIndex - 1)
charIndex--
if (charIndex === 0) {
isDeleting = false
textIndex = (textIndex + 1) % texts.length
}
}
setTimeout(typeEffect, isDeleting ? 50 : 150)
}
typeEffect()
})
</script>
<style scoped>
.home {
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f0f 100%);
color: #ffffff;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
position: relative;
overflow-x: hidden;
}
/* Background Elements */
.background-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.grid-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(100, 181, 246, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(100, 181, 246, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
animation: gridMove 20s linear infinite;
}
.floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
animation: float 6s ease-in-out infinite;
}
.shape-1 {
width: 100px;
height: 100px;
top: 20%;
left: 10%;
animation-delay: 0s;
}
.shape-2 {
width: 60px;
height: 60px;
top: 60%;
right: 15%;
animation-delay: 2s;
}
.shape-3 {
width: 80px;
height: 80px;
top: 40%;
left: 80%;
animation-delay: 4s;
}
.shape-4 {
width: 40px;
height: 40px;
top: 80%;
left: 30%;
animation-delay: 1s;
}
.shape-5 {
width: 120px;
height: 120px;
top: 10%;
right: 30%;
animation-delay: 3s;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
position: relative;
z-index: 2;
}
.hero-container {
max-width: 1000px;
width: 100%;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 4rem;
align-items: center;
animation: fadeInUp 1s ease-out;
}
/* Enhanced Avatar */
.avatar-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.avatar-glow {
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
animation: pulse 3s ease-in-out infinite;
}
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
box-shadow:
0 20px 40px rgba(102, 126, 234, 0.4),
inset 0 2px 10px rgba(255, 255, 255, 0.2);
z-index: 2;
}
.avatar-text {
font-size: 3rem;
font-weight: 700;
color: white;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.avatar-ring {
position: absolute;
width: 170px;
height: 170px;
border: 2px solid rgba(100, 181, 246, 0.5);
border-radius: 50%;
animation: rotate 10s linear infinite;
border-top-color: #64b5f6;
}
/* Text Content */
.text-content {
text-align: left;
}
.hero-title {
font-size: 4rem;
font-weight: 800;
margin-bottom: 1rem;
background: linear-gradient(45deg, #ffffff, #64b5f6, #ffffff);
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: shimmer 3s ease-in-out infinite;
}
.hero-subtitle {
font-size: 1.8rem;
font-weight: 400;
color: #64b5f6;
margin-bottom: 1.5rem;
height: 2.2rem;
}
.typing-text {
color: #64b5f6;
}
.cursor {
color: #64b5f6;
animation: blink 1s infinite;
}
.hero-description {
font-size: 1.2rem;
line-height: 1.8;
color: #b0b0b0;
margin-bottom: 2rem;
}
.highlight {
color: #64b5f6;
font-weight: 600;
}
/* Stats Container */
.stats-container {
display: flex;
gap: 2rem;
margin-bottom: 2.5rem;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: #64b5f6;
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.9rem;
color: #888;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Enhanced Buttons */
.hero-buttons {
display: flex;
gap: 1.5rem;
margin-bottom: 3rem;
flex-wrap: wrap;
}
.btn {
position: relative;
padding: 1rem 2.5rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
overflow: hidden;
}
.btn-primary {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}
.btn-secondary {
background: transparent;
color: #64b5f6;
border: 2px solid #64b5f6;
position: relative;
}
.btn-secondary:hover {
background: #64b5f6;
color: white;
transform: translateY(-3px);
}
.btn-shine {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shine 3s infinite;
}
/* Tech Stack */
.tech-stack {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.tech-label {
font-size: 0.9rem;
color: #888;
font-weight: 600;
}
.tech-icons {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
}
.tech-icon {
background: rgba(100, 181, 246, 0.1);
color: #64b5f6;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 500;
border: 1px solid rgba(100, 181, 246, 0.3);
transition: all 0.3s ease;
}
.tech-icon:hover {
background: rgba(100, 181, 246, 0.2);
transform: translateY(-2px);
}
/* Scroll Indicator */
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
color: #64b5f6;
animation: bounce 2s infinite;
}
.scroll-arrow {
width: 20px;
height: 20px;
border: 2px solid #64b5f6;
border-top: none;
border-left: none;
transform: rotate(45deg);
}
.scroll-text {
font-size: 0.8rem;
letter-spacing: 1px;
text-transform: uppercase;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes pulse {
0%, 100% {
opacity: 0.5;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
@keyframes shimmer {
0% {
background-position: -200% center;
}
100% {
background-position: 200% center;
}
}
@keyframes blink {
0%, 50% {
opacity: 1;
}
51%, 100% {
opacity: 0;
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateX(-50%) translateY(0);
}
40% {
transform: translateX(-50%) translateY(-10px);
}
60% {
transform: translateX(-50%) translateY(-5px);
}
}
@keyframes shine {
0% {
left: -100%;
}
100% {
left: 100%;
}
}
@keyframes gridMove {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(50px, 50px);
}
}
/* Responsive Design */
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
text-align: center;
gap: 3rem;
}
.text-content {
text-align: center;
}
.hero-title {
font-size: 3rem;
}
}
@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.4rem;
}
.stats-container {
justify-content: center;
flex-wrap: wrap;
}
.hero-buttons {
justify-content: center;
flex-direction: column;
align-items: center;
}
.btn {
width: 250px;
}
.avatar {
width: 120px;
height: 120px;
}
.avatar-text {
font-size: 2.5rem;
}
}
</style>

View File

@@ -0,0 +1,35 @@
<template>
<div class="projects">
<div class="container">
<h1>My Projects</h1>
<p>Portfolio projects coming soon...</p>
</div>
</div>
</template>
<script setup>
</script>
<style scoped>
.projects {
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #ffffff;
padding: 6rem 2rem 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 2rem;
background: linear-gradient(45deg, #ffffff, #64b5f6);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>

7
portfolio/vite.config.js Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
})