Docs Cleanup

This commit is contained in:
David Haz
2025-07-12 15:28:52 +03:00
parent 62cdbc2dba
commit 056d2c0330
21 changed files with 365 additions and 588 deletions

View File

@@ -116,7 +116,6 @@
border: none;
border-radius: 50px;
cursor: pointer;
display: flex;
align-items: center;
white-space: nowrap;
@@ -133,7 +132,6 @@
border-radius: 50px;
width: 100px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
@@ -146,15 +144,24 @@
transition: 0.3s ease;
}
.cta-button:hover {
transition: 0.3s ease;
}
.cta-button:hover span img {
transform: scale(1.2);
transition: 0.3s ease;
}
@media (min-width: 900px) {
.landing-nav-items {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.nav-cta-group {
gap: 2rem;
}
}
@media (max-width: 900px) {
.header {
padding: 0 2em;
@@ -295,16 +302,3 @@
margin-right: 1px;
}
}
@media (min-width: 900px) {
.landing-nav-items {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.nav-cta-group {
gap: 2rem;
}
}

View File

@@ -67,30 +67,6 @@
text-align: center;
}
@media (max-width: 768px) {
.features-title {
font-size: 2.5rem;
}
.features-subtitle {
font-size: 1.1rem;
}
.features-header {
margin-bottom: 3rem;
}
}
@media (max-width: 480px) {
.features-title {
font-size: 2rem;
}
.features-subtitle {
font-size: 1rem;
}
}
.bento-grid {
max-width: 1200px;
display: grid;
@@ -99,73 +75,6 @@
grid-auto-rows: auto;
}
@media (min-width: 480px) and (max-width: 767px) {
.bento-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.25em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
.card4 {
grid-column: 2 / 3;
grid-row: 2 / 3;
}
}
@media (min-width: 50rem) {
.bento-grid {
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(3, auto);
gap: 1.5em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 3 / 5;
grid-row: 1 / 3;
}
.card4 {
grid-column: 1 / 3;
grid-row: 2 / 3;
}
}
@media (min-width: 768px) and (max-width: 49.99rem) {
.bento-grid {
grid-template-columns: repeat(3, 1fr);
gap: 1.25em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 3 / 4;
grid-row: 1 / 3;
}
.card4 {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
}
.feature-card {
user-select: none;
background: #0b0b0b;
@@ -324,136 +233,24 @@
pointer-events: none;
}
.components-gif-wrapper {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 1;
overflow: hidden;
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover .components-gif-wrapper {
opacity: 1;
}
.components-gif {
width: 100%;
height: auto;
opacity: 0.2;
mix-blend-mode: lighten;
display: block;
filter: grayscale(100%);
}
.components-gif-wrapper::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to top, #0b0b0b 0%, transparent 100%);
border-radius: 0 0 8px 8px;
pointer-events: none;
z-index: 2;
}
.components-gif-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to bottom, #0b0b0b 0%, transparent 100%);
border-radius: 8px 8px 0 0;
pointer-events: none;
z-index: 2;
}
.messages-gif-wrapper {
position: absolute;
mix-blend-mode: lighten;
top: 0.5rem;
right: 1rem;
bottom: 1rem;
width: 50%;
border-radius: 8px;
z-index: 1;
overflow: hidden;
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover .messages-gif-wrapper {
opacity: 1;
}
.messages-gif {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 0;
opacity: 0.3;
display: block;
}
.messages-gif-wrapper::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to top, #0b0b0b 0%, transparent 100%);
border-radius: 0 0 8px 8px;
pointer-events: none;
z-index: 2;
}
.messages-gif-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 20%;
background: linear-gradient(to bottom, #0b0b0b 0%, transparent 100%);
border-radius: 8px 8px 0 0;
pointer-events: none;
z-index: 2;
}
.components-gif-wrapper,
.messages-gif-wrapper,
.switch-gif-wrapper {
position: absolute;
top: 0;
right: 1rem;
width: 40%;
mix-blend-mode: lighten;
border-radius: 8px;
z-index: 1;
overflow: hidden;
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover .components-gif-wrapper,
.feature-card:hover .messages-gif-wrapper,
.feature-card:hover .switch-gif-wrapper {
opacity: 1;
}
.switch-gif {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 0;
opacity: 0.3;
display: block;
}
.components-gif-wrapper::after,
.messages-gif-wrapper::after,
.switch-gif-wrapper::after {
content: '';
position: absolute;
@@ -467,6 +264,8 @@
z-index: 2;
}
.components-gif-wrapper::before,
.messages-gif-wrapper::before,
.switch-gif-wrapper::before {
content: '';
position: absolute;
@@ -480,43 +279,50 @@
z-index: 2;
}
@media (max-width: 479px) {
.features-section {
padding: 4rem 1rem 2rem;
padding-bottom: 0;
margin-top: 4em;
}
.components-gif-wrapper {
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.bento-grid {
gap: 1rem;
max-width: 100%;
}
.messages-gif-wrapper {
mix-blend-mode: lighten;
top: 0.5rem;
right: 1rem;
bottom: 1rem;
width: 50%;
border-radius: 8px;
}
.feature-card {
min-height: 160px;
padding: 1.25rem;
border-radius: 12px;
}
.switch-gif-wrapper {
top: 0;
right: 1rem;
width: 40%;
mix-blend-mode: lighten;
border-radius: 8px;
}
.feature-icon {
font-size: 1.75rem;
margin-bottom: 0.75rem;
}
.components-gif,
.messages-gif,
.switch-gif {
width: 100%;
height: auto;
opacity: 0.2;
mix-blend-mode: lighten;
display: block;
filter: grayscale(100%);
border-radius: 0;
}
.feature-card h2 {
font-size: 4rem;
}
.feature-card h3 {
font-size: 1rem;
margin-bottom: 0.5rem;
}
.feature-card p {
font-size: 0.85rem;
line-height: 1.6;
}
.messages-gif,
.switch-gif {
height: 100%;
object-fit: contain;
opacity: 0.3;
}
@media (max-width: 49.99rem) {
.components-gif-wrapper,
.messages-gif-wrapper,
.switch-gif-wrapper {
@@ -557,11 +363,87 @@
font-size: 0.8rem;
line-height: 1.7;
}
}
.components-gif-wrapper,
.messages-gif-wrapper,
.switch-gif-wrapper {
display: none !important;
@media (max-width: 479px) {
.features-section {
padding: 4rem 1rem 2rem;
padding-bottom: 0;
margin-top: 4em;
}
.features-title {
font-size: 2rem;
}
.features-subtitle {
font-size: 1rem;
}
.bento-grid {
gap: 1rem;
max-width: 100%;
}
.feature-card {
min-height: 160px;
padding: 1.25rem;
border-radius: 12px;
}
.feature-icon {
font-size: 1.75rem;
margin-bottom: 0.75rem;
}
.feature-card h2 {
font-size: 4rem;
}
.feature-card h3 {
font-size: 1rem;
margin-bottom: 0.5rem;
}
.feature-card p {
font-size: 0.85rem;
line-height: 1.6;
}
}
@media (min-width: 480px) and (max-width: 767px) {
.bento-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.25em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
.card4 {
grid-column: 2 / 3;
grid-row: 2 / 3;
}
}
@media (max-width: 768px) {
.features-title {
font-size: 2.5rem;
}
.features-subtitle {
font-size: 1.1rem;
}
.features-header {
margin-bottom: 3rem;
}
}
@@ -588,11 +470,27 @@
.feature-card p {
font-size: 0.92rem;
}
}
.components-gif-wrapper,
.messages-gif-wrapper,
.switch-gif-wrapper {
display: none !important;
@media (min-width: 768px) and (max-width: 49.99rem) {
.bento-grid {
grid-template-columns: repeat(3, 1fr);
gap: 1.25em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 3 / 4;
grid-row: 1 / 3;
}
.card4 {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
}
@@ -603,6 +501,27 @@
margin-top: 8em;
}
.bento-grid {
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(3, auto);
gap: 1.5em;
}
.card1 {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.card2 {
grid-column: 3 / 5;
grid-row: 1 / 3;
}
.card4 {
grid-column: 1 / 3;
grid-row: 2 / 3;
}
.feature-card {
min-height: 220px;
padding: 2rem;
@@ -620,12 +539,6 @@
.feature-card p {
font-size: 0.95rem;
}
.components-gif-wrapper,
.messages-gif-wrapper,
.switch-gif-wrapper {
display: block !important;
}
}
@media (max-height: 500px) and (orientation: landscape) {

View File

@@ -3,52 +3,39 @@
<div class="features-container">
<div class="features-header">
<h3 class="features-title">Zero cost, all the cool.</h3>
<p class="features-subtitle">Everything you need to add flair to your websites</p>
</div>
<GlobalSpotlight v-if="gridRef" :grid-ref="gridRef" :disable-animations="isMobile" />
<div class="bento-grid" ref="gridRef">
<ParticleCard class="feature-card card1" :disable-animations="isMobile">
<div className="messages-gif-wrapper">
<img src="/assets/messages.gif" alt="Messages animation" className="messages-gif" />
<div class="messages-gif-wrapper">
<img src="/assets/messages.gif" alt="Messages animation" class="messages-gif" />
</div>
<h2>
<template v-if="isMobile">100</template>
<CountUp v-else :to="100" />
%
</h2>
<h3>Free &amp; Open Source</h3>
<p>Loved by developers around the world</p>
</ParticleCard>
<ParticleCard class="feature-card card2" :disable-animations="isMobile">
<div className="components-gif-wrapper">
<img src="/assets/components.gif" alt="Components animation" className="components-gif" />
<div class="components-gif-wrapper">
<img src="/assets/components.gif" alt="Components animation" class="components-gif" />
</div>
<h2>
<template v-if="isMobile">40</template>
<CountUp v-else :to="40" />
+
</h2>
<h3>Curated Components</h3>
<p>Growing weekly &amp; only getting better</p>
</ParticleCard>
<ParticleCard class="feature-card card4" :disable-animations="isMobile">
<h2>Modern</h2>
<h3>Technologies</h3>
<p>TypeScript + Tailwind, ready to ship</p>
</ParticleCard>
</div>
@@ -200,102 +187,4 @@ const ParticleCard = defineComponent({
);
}
});
const GlobalSpotlight = defineComponent({
name: 'GlobalSpotlight',
props: {
gridRef: {
type: Object,
required: true
},
disableAnimations: {
type: Boolean,
default: false
}
},
setup(props) {
const spotlightRef = ref<HTMLDivElement | null>(null);
const isInsideSectionRef = ref(false);
const handleMouseMove = (e: MouseEvent) => {
if (!spotlightRef.value || !props.gridRef.value) return;
const section = props.gridRef.value.closest('.features-section');
const rect = section?.getBoundingClientRect();
const inside =
rect && e.clientX >= rect.left && e.clientX <= rect.right && e.clientY >= rect.top && e.clientY <= rect.bottom;
isInsideSectionRef.value = inside;
const cards = props.gridRef.value.querySelectorAll('.feature-card');
if (!inside) {
gsap.to(spotlightRef.value, { opacity: 0, duration: 0.3, ease: 'power2.out' });
cards.forEach((card: HTMLElement) => card.style.setProperty('--glow-intensity', '0'));
return;
}
let minDist = Infinity;
const prox = 100,
fade = 150;
cards.forEach((card: HTMLElement) => {
const r = card.getBoundingClientRect();
const cx = r.left + r.width / 2;
const cy = r.top + r.height / 2;
const d = Math.hypot(e.clientX - cx, e.clientY - cy) - Math.max(r.width, r.height) / 2;
const ed = Math.max(0, d);
minDist = Math.min(minDist, ed);
const rx = ((e.clientX - r.left) / r.width) * 100;
const ry = ((e.clientY - r.top) / r.height) * 100;
let glow = 0;
if (ed <= prox) glow = 1;
else if (ed <= fade) glow = (fade - ed) / (fade - prox);
card.style.setProperty('--glow-x', `${rx}%`);
card.style.setProperty('--glow-y', `${ry}%`);
card.style.setProperty('--glow-intensity', String(glow));
});
gsap.to(spotlightRef.value, { left: e.clientX, top: e.clientY, duration: 0.1, ease: 'power2.out' });
const target = minDist <= prox ? 0.8 : minDist <= fade ? ((fade - minDist) / (fade - prox)) * 0.8 : 0;
gsap.to(spotlightRef.value, { opacity: target, duration: target > 0 ? 0.2 : 0.5, ease: 'power2.out' });
};
const handleMouseLeave = () => {
isInsideSectionRef.value = false;
props.gridRef.value
?.querySelectorAll('.feature-card')
.forEach((card: HTMLElement) => card.style.setProperty('--glow-intensity', '0'));
if (spotlightRef.value) {
gsap.to(spotlightRef.value, { opacity: 0, duration: 0.3, ease: 'power2.out' });
}
};
onMounted(() => {
if (props.disableAnimations || !props.gridRef?.value) return;
const spotlight = document.createElement('div');
spotlight.className = 'global-spotlight';
spotlight.style.cssText = `
position:fixed;width:800px;height:800px;border-radius:50%;pointer-events:none;
background:radial-gradient(circle,rgba(132,0,255,.15) 0%,rgba(132,0,255,.08) 15%,
rgba(132,0,255,.04) 25%,rgba(132,0,255,.02) 40%,rgba(132,0,255,.01) 65%,transparent 70%);
z-index:200;opacity:0;transform:translate(-50%,-50%);mix-blend-mode:screen;
`;
document.body.appendChild(spotlight);
spotlightRef.value = spotlight;
document.addEventListener('mousemove', handleMouseMove);
document.addEventListener('mouseleave', handleMouseLeave);
});
onUnmounted(() => {
document.removeEventListener('mousemove', handleMouseMove);
document.removeEventListener('mouseleave', handleMouseLeave);
if (spotlightRef.value?.parentNode) {
spotlightRef.value.parentNode.removeChild(spotlightRef.value);
}
});
return () => null;
}
});
</script>

View File

@@ -12,7 +12,7 @@
<a href="https://davidhaz.com/" target="_blank" class="footer-creator-link">this guy</a>
</p>
<p class="footer-copyright">© {{ currentYear }} Vue Bits</p>
<p class="footer-copyright">© {{ new Date().getFullYear() }} Vue Bits</p>
</div>
<div class="footer-links">
@@ -21,9 +21,7 @@
</a>
<router-link to="/text-animations/split-text" class="footer-link">Docs</router-link>
<a href="https://www.jsrepo.com/" target="_blank" class="footer-link">CLI</a>
<a href="https://reactbits.dev/" target="_blank" class="footer-link">React Bits</a>
</div>
</div>
@@ -32,10 +30,7 @@
</template>
<script setup lang="ts">
import { computed } from 'vue';
import vueBitsLogo from '../../../assets/logos/vue-bits-logo.svg';
import FadeContent from '@/content/Animations/FadeContent/FadeContent.vue';
import './Footer.css';
const currentYear = computed(() => new Date().getFullYear());
</script>

View File

@@ -3,7 +3,6 @@
<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>