first commit
This commit is contained in:
22
src/pages/blog/index.astro
Normal file
22
src/pages/blog/index.astro
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
import Layout from "../../layouts/Layout.astro";
|
||||
import Hero from "../../components/blog/Hero.astro";
|
||||
import Tags from "../../components/blog/Tags.astro";
|
||||
import ListPosts from "../../components/blog/ListPosts.astro";
|
||||
const pageTitle = "Web Development and Technology Blog | Fernando López | EFEELE";
|
||||
const description = "Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends.";
|
||||
const ogimage ={
|
||||
url: "/images/blogimage.webp",
|
||||
alt: "EFEELE.dev logo with green background and light effect. Text: 'Web Development and Technology Blog' and URL 'www.efeele.dev'."
|
||||
};
|
||||
---
|
||||
|
||||
<Layout pageTitle={pageTitle} description={description} ogimage={ogimage}>
|
||||
|
||||
<Hero />
|
||||
<Tags />
|
||||
<div class="px-8 max-sm:px-4">
|
||||
<ListPosts />
|
||||
</div>
|
||||
|
||||
</Layout>
|
||||
Reference in New Issue
Block a user