Landing Page

This commit is contained in:
David Haz
2025-07-08 12:39:14 +03:00
parent fa9392fa47
commit 9ddb731258
41 changed files with 4584 additions and 8 deletions

View File

@@ -0,0 +1,162 @@
.start-building-section {
width: 100%;
padding: 80px 0;
background: transparent;
position: relative;
z-index: 22;
}
.start-building-container {
max-width: 1200px;
margin: 0 auto;
padding: 0;
}
.start-building-card {
width: 100%;
max-width: 1200px;
user-select: none;
margin: 0 auto;
background: linear-gradient(135deg,
#3aed6d,
rgba(24, 255, 93, 0.6));
background-size: 200% 200%;
border-radius: 16px;
padding: 4rem 3rem;
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.start-building-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/assets/grain.webp');
background-size: 500px 500px;
filter: invert(100%);
mix-blend-mode: multiply;
background-repeat: repeat;
opacity: 1;
pointer-events: none;
z-index: 1;
}
.start-building-card > * {
position: relative;
z-index: 2;
}
.start-building-title {
color: #0e0e0e;
font-size: 2.6rem;
font-weight: 600;
margin: 0;
line-height: 1;
}
.start-building-subtitle {
color: #0e0e0e;
font-size: 1.2rem;
font-weight: 500;
margin: -1rem 0 0 0;
opacity: 0.9;
max-width: 600px;
line-height: 1.4;
}
.start-building-button {
background: transparent;
color: #0e0e0e;
border: 2px solid #0e0e0e;
padding: .6rem 1.6rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
cursor: pointer;
transition: all 0.2s ease;
}
.start-building-button:hover {
background: #0e0e0e;
color: #27FF64;
}
@media (max-width: 1280px) {
.start-building-container {
max-width: 1000px;
padding: 0 30px;
}
.start-building-card {
padding: 2.5rem;
}
}
@media (max-width: 768px) {
.start-building-section {
padding: 60px 0;
}
.start-building-container {
padding: 0 20px;
}
.start-building-card {
padding: 3rem 2rem;
border-radius: 12px;
gap: 1.25rem;
}
.start-building-title {
font-size: 2rem;
}
.start-building-subtitle {
font-size: 1.1rem;
}
.start-building-button {
padding: 0.875rem 1.75rem;
font-size: 1rem;
}
}
@media (max-width: 480px) {
.start-building-section {
padding: 40px 0;
}
.start-building-container {
padding: 0 16px;
}
.start-building-card {
padding: 2.5rem 1.5rem;
gap: 1rem;
}
.start-building-title {
font-size: 1.5rem;
}
.start-building-subtitle {
font-size: 1rem;
margin: 0;
padding: 0 0.6rem;
}
.start-building-button {
padding: 0.75rem 1.5rem;
font-size: 0.95rem;
}
}

View File

@@ -0,0 +1,18 @@
<template>
<section class="start-building-section">
<div class="start-building-container">
<div class="start-building-card">
<h2 class="start-building-title">Start exploring Vue Bits</h2>
<p class="start-building-subtitle">Animations, components, backgrounds - it's all here</p>
<router-link to="/text-animations/split-text" class="start-building-button">
Browse Components
</router-link>
</div>
</div>
</section>
</template>
<script setup lang="ts">
import './StartBuilding.css'
</script>