2024-07-02 15:07:22 +00:00
|
|
|
<template>
|
2024-08-12 12:24:17 +00:00
|
|
|
<v-container class="flex flex-col my-2 gap-[4rem]">
|
2024-07-02 15:07:22 +00:00
|
|
|
<v-row class="content-section">
|
2024-08-12 07:55:15 +00:00
|
|
|
<v-col cols="12" md="4" class="flex justify-start">
|
2024-07-02 15:07:22 +00:00
|
|
|
<div>
|
2024-08-10 05:47:34 +00:00
|
|
|
<h1 class="text-4xl font-bold">Solsynth</h1>
|
|
|
|
<p class="text-lg mt-3">
|
|
|
|
An energetic software company that create wonderful software which everyone love.
|
2024-07-02 15:07:22 +00:00
|
|
|
</p>
|
2024-08-10 05:47:34 +00:00
|
|
|
<p class="text-grey mt-2">
|
|
|
|
See some of our products just there
|
|
|
|
<v-icon icon="mdi-arrow-right" size="16" class="mb-0.5" />
|
2024-07-02 15:07:22 +00:00
|
|
|
</p>
|
2024-08-10 05:47:34 +00:00
|
|
|
</div>
|
2024-07-02 15:07:22 +00:00
|
|
|
</v-col>
|
2024-08-10 05:47:34 +00:00
|
|
|
<v-col cols="12" md="8">
|
|
|
|
<v-card>
|
|
|
|
<product-carousel class="carousel-section" :products="products as any[]" />
|
2024-07-02 15:07:22 +00:00
|
|
|
</v-card>
|
|
|
|
</v-col>
|
|
|
|
</v-row>
|
2024-08-11 16:54:49 +00:00
|
|
|
<v-row class="content-section">
|
|
|
|
<v-col cols="12" md="8">
|
2024-08-12 07:55:15 +00:00
|
|
|
<v-card class="max-h-[500px]">
|
2024-08-11 16:54:49 +00:00
|
|
|
<activity-carousel class="carousel-section" />
|
|
|
|
</v-card>
|
|
|
|
</v-col>
|
2024-08-12 07:55:15 +00:00
|
|
|
<v-col cols="12" md="4" class="flex justify-end" order="first" order-md="last">
|
2024-08-11 16:54:49 +00:00
|
|
|
<div class="text-right">
|
|
|
|
<h1 class="text-4xl font-bold">Activities</h1>
|
|
|
|
<p class="text-lg mt-3">
|
|
|
|
Keep in touch, <br />
|
|
|
|
and learn what we doing recently.
|
|
|
|
</p>
|
|
|
|
<p class="text-grey mt-2">
|
|
|
|
<v-icon icon="mdi-arrow-left" size="16" class="mb-0.5" />
|
2024-08-12 07:55:15 +00:00
|
|
|
See some posts in our realm just here
|
2024-08-11 16:54:49 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</v-col>
|
|
|
|
</v-row>
|
2024-07-02 15:07:22 +00:00
|
|
|
</v-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-08-10 15:10:38 +00:00
|
|
|
const { data: products } = await useAsyncData("products", () => queryContent("/products").where({ archived: { $ne: true } }).limit(5).find())
|
2024-07-02 15:07:22 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.carousel-section {
|
|
|
|
height: 96rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-section {
|
2024-08-10 13:16:36 +00:00
|
|
|
height: calc(100vh - 80px);
|
|
|
|
display: flex;
|
|
|
|
place-items: center;
|
2024-07-02 15:07:22 +00:00
|
|
|
}
|
|
|
|
</style>
|