diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 910f4f7..9a04773 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,7 +8,7 @@ const today = new Date();
- Template developed by + Template developed by Manuel Ernesto ⚡️
diff --git a/src/components/Header.astro b/src/components/Header.astro index 1b23d7f..e2831d6 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -10,7 +10,7 @@ diff --git a/src/config.ts b/src/config.ts index d259494..153e9d6 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,5 +1,5 @@ // Place any global data in this file. // You can import this data from anywhere in your site by using the `import` keyword. -export const SITE_TITLE = 'Manuel Ernesto Garcia'; -export const SITE_DESCRIPTION = 'Software Engineer from Cuba and Entrepreneur. Working in create software that solve problems in a simple way and sharing what I learn along the way.'; +export const SITE_TITLE = 'Astro Personal Website Template'; +export const SITE_DESCRIPTION = 'Astro personal website template'; diff --git a/src/pages/blog/[page].astro b/src/pages/blog/[page].astro index a0b5d70..03d19b2 100644 --- a/src/pages/blog/[page].astro +++ b/src/pages/blog/[page].astro @@ -7,7 +7,7 @@ export async function getStaticPaths({ paginate }) { (a, b) => new Date(b.frontmatter.pubDate).valueOf() - new Date(a.frontmatter.pubDate).valueOf() ); - return paginate(posts, { pageSize: 1 }); + return paginate(posts, { pageSize: 10 }); } const { page } = Astro.props; ---