Started to work in projects component

This commit is contained in:
2024-12-03 16:31:37 +01:00
parent 4ceac1ea71
commit 6629f83eb6
3 changed files with 24 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import Header from './components/Header.vue';
<template>
<header>
<Header :links="[['google', 'a'], ['yahoo', 'a'], ['Yandex', 'a']]"></Header>
<!--<Header :links="[['About me', 'a'], ['Projects', '#projects']]"></Header>-->
</header>
<div id="view_content">

View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
</script>
<template>
<div class="projects">
<h1 id="projects">My projects</h1>
</div>
</template>
<style scoped>
.projects{
width: 100%;
border: 2px green dotted;
display: flex;
justify-content: space-between;
flex-wrap: wrap-reverse;
}
</style>

View File

@@ -1,10 +1,12 @@
<script setup lang="ts">
import TypewriterWelcome from '@/components/Home/TypewriterWelcome.vue';
import Projects from '@/components/Home/Projects.vue';
</script>
<template>
<main>
<TypewriterWelcome />
<Projects />
</main>
</template>