mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
17 lines
539 B
Vue
17 lines
539 B
Vue
<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>
|