mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-28 00:54:06 +00:00
enhancement(lint): Fix lint errors for pages/about.vue
Co-authored-by: NeonGamerBot-QK <neon@saahild.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
bb7caeafff
commit
f467015523
1 changed files with 31 additions and 16 deletions
|
@ -1,24 +1,39 @@
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import FeedbackCards from '~/components/FeedbackCards.vue';
|
import FeedbackCards from "~/components/FeedbackCards.vue";
|
||||||
import AboutMe from '~/components/AboutMe.vue';
|
import AboutMe from "~/components/AboutMe.vue";
|
||||||
import SnakeGrid from '~/components/SnakeGrid.vue';
|
import SnakeGrid from "~/components/SnakeGrid.vue";
|
||||||
let cards = [
|
let cards = [
|
||||||
{ id: 1, title: 'Card 1', text: 'First card', color: 'bg-base-100 text-primary-content' },
|
{
|
||||||
{ id: 2, title: 'Card 2', text: 'Second card', color: 'bg-base-100 text-primary-content' },
|
id: 1,
|
||||||
{ id: 3, title: 'Card 3', text: 'Third card', color: 'bg-base-100 text-primary-content' },
|
title: "Card 1",
|
||||||
]
|
text: "First card",
|
||||||
|
color: "bg-base-100 text-primary-content",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Card 2",
|
||||||
|
text: "Second card",
|
||||||
|
color: "bg-base-100 text-primary-content",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Card 3",
|
||||||
|
text: "Third card",
|
||||||
|
color: "bg-base-100 text-primary-content",
|
||||||
|
},
|
||||||
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="flex items-center justify-between">
|
<div class="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<AboutMe />
|
<AboutMe />
|
||||||
|
</div>
|
||||||
|
<FeedbackCards :cards="cards" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<SnakeGrid />
|
||||||
</div>
|
</div>
|
||||||
<FeedbackCards :cards="cards" />
|
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<SnakeGrid />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue