remove logo from home page
This commit is contained in:
parent
c43d2e5420
commit
ecca2bf614
BIN
src/assets/logo.png
Normal file
BIN
src/assets/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
3179
src/assets/logo.svg
3179
src/assets/logo.svg
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 182 KiB |
@ -1,7 +1,7 @@
|
||||
---
|
||||
import { navItems } from "@/utils/nav-links";
|
||||
import MobileMenu from "@/components/mobile-menu";
|
||||
import logo from "@/assets/logo.svg";
|
||||
import logo from "@/assets/logo.png";
|
||||
import { Image } from "astro:assets";
|
||||
import LinkButton from "@/components/link-button";
|
||||
---
|
||||
|
@ -3,8 +3,6 @@ import Layout from "@/layouts/Layout.astro";
|
||||
import LinkButton from "@/components/link-button";
|
||||
import { getCollection } from "astro:content";
|
||||
import PostItem from "@/components/post-item";
|
||||
import { Image } from "astro:assets";
|
||||
import logo from "@/assets/logo.svg";
|
||||
|
||||
const allPosts = await getCollection("blog", ({ data }) => data.draft !== true);
|
||||
allPosts.sort(
|
||||
@ -43,13 +41,6 @@ const last3Projects = allProjects.slice(0, 3);
|
||||
Take a seat, drink some tea, and enjoy your stay.
|
||||
</p>
|
||||
</div>
|
||||
<Image
|
||||
src={logo}
|
||||
width={160}
|
||||
height={160}
|
||||
alt="juancmandev logo"
|
||||
class="w-40 h-40 aspect-square"
|
||||
/>
|
||||
</section>
|
||||
<section>
|
||||
<h2 class="text-3xl">Latest posts</h2>
|
||||
|
Loading…
x
Reference in New Issue
Block a user