Skip to content

Commit a7e7b81

Browse files
committed
home page fixes
1 parent d209083 commit a7e7b81

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

app/components/FooterMain.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { data: products } = await useAsyncData(() => queryCollection('products').
77
<div class="flex items-center justify-center py-8">
88
<Logo />
99
</div>
10-
<Footer class="sm:footer-horizontal text-neutral-content max-w-[87rem] mx-auto p-10 justify-evenly text-lg">
10+
<Footer class="sm:footer-horizontal text-neutral-content max-w-[87rem] mx-auto p-10 justify-evenly text-lg -ml-5.5 sm:ml-0">
1111
<nav class="flex flex-col gap-4">
1212
<FooterTitle class="normal-case">Products</FooterTitle>
1313
<NuxtLink v-for="product in products" :key="product.slug" class="link link-hover" :to="product.slug">

app/components/Hero/HeroHome.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="pb-12 lg:pb-0">
33
<Flex col class="mx-auto max-w-5xl text-center gap-10 mt-36 relative px-4">
44
<Text size="5xl" class="flex flex-col items-center justify-center gap-3">
5-
<Flex row items-center justify-center class="gap-2 md:gap-4 text-3xl">
5+
<Flex row items-center justify-center class="gap-2 md:gap-4 text-2xl sm:text-3xl">
66
<Text>Identity.</Text>
77
<Text>Data.</Text>
88
<Text>Realtime.</Text>
@@ -22,11 +22,11 @@
2222
</NuxtLink>
2323
</Flex>
2424

25-
<NuxtImg src="/img/planet.svg" class="w-[400px] lg:w-[599px] absolute transition-all duration-500 ease-in-out -bottom-[calc(100%-10rem)] -right-52 md:-right-72 lg:-bottom-32 xl:-right-108 planet-wobble" />
2625
<NuxtImg src="/img/rock-md.svg" class="w-[190px] absolute lg:-top-1 -left-52 transition-all duration-500 ease-in-out floating-rock-1" />
2726
<NuxtImg src="/img/rock-lg.svg" class="hidden lg:block w-[386px] absolute -bottom-80 left-28 transition-all duration-500 ease-in-out floating-rock-2" />
2827
<NuxtImg src="/img/shuttle.svg" class="hidden lg:block w-[355px] absolute -bottom-72 right-20 transition-all duration-500 ease-in-out floating-shuttle" />
2928
</Flex>
29+
<NuxtImg src="/img/planet.svg" class="w-[400px] lg:w-[599px] absolute transition-all duration-500 ease-in-out bottom-20 -right-52 sm:-right-32 lg:bottom-74 lg:-right-72 planet-wobble" />
3030
<NuxtImg src="/img/bird-red.svg" class="w-[260px] lg:w-[342px] relative lg:-top-26 transition-all duration-500 ease-in-out floating" />
3131
</div>
3232
</template>

app/components/ProductCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defineProps<{
66
</script>
77

88
<template>
9-
<div class="p-4">
9+
<div>
1010
<Card class="h-full items-start bg-primary-content text-base-100 p-2">
1111
<CardBody class="gap-6">
1212
<figure class="flex flex-col !items-start !justify-start invert">

app/components/Products.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ defineProps<{
1818
:subTitle="subTitle"
1919
:description="description"
2020
/>
21-
<Flex class="mt-8 flex-wrap">
21+
<Flex class="mt-8 flex-wrap px-2 lg:px-0">
2222
<ProductCard
2323
v-for="product in products"
2424
:key="product.slug"
2525
:product="product"
26-
class="w-full md:w-1/2 lg:w-1/2"
26+
class="w-full md:w-1/2 lg:w-1/2 p-2 lg:p-4"
2727
/>
2828
</Flex>
2929
</div>

app/pages/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ useSeoMeta({
1919
</div>
2020
<div class="h-64"></div>
2121
</div>
22-
<div class="bg-base-200 min-h-screen max-w-[82rem] mx-auto -mt-64 rounded-4xl p-6 pt-12 lg:p-12">
22+
<div class="bg-base-200 min-h-screen max-w-[82rem] mx-auto -mt-64 rounded-4xl pt-12 lg:p-12">
2323
<!-- <ValueGuide /> -->
2424

2525
<Products
@@ -31,6 +31,6 @@ useSeoMeta({
3131
<Titles title="Latest News" sub-title="Stay up to date with the latest Feathers news and updates" class="mt-30 mb-8"/>
3232
<BlogPosts :posts="posts || []" class="my-24" />
3333

34-
<Discord />
34+
<Discord class="mx-4" />
3535
</div>
3636
</template>

0 commit comments

Comments
 (0)