Skip to content

Commit

Permalink
Add code and meta improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotdaniel committed Oct 12, 2024
1 parent 627a08d commit 5b08a53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/layouts/DarkLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { title } = Astro.props;
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Tracking expenses should be easy." />
<meta name="description" content="Jajanku is the simple, no frills daily budget tracker app that will effortlessly help you stay on top of your daily expenses." />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { title } = Astro.props;
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Tracking expenses should be easy." />
<meta name="description" content="Jajanku is the simple, no frills daily budget tracker app that will effortlessly help you stay on top of your daily expenses." />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
Expand Down
3 changes: 2 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Quote from '../components/Quote.astro';
import Layout from '../layouts/Layout.astro';
---

<Layout title="Jajanku - Tracking expenses should be easy.">
<Layout title="Jajanku - Tracking Expenses Should Be Easy">
<main class="mx-auto">
<div class="relative py-12 h-screen flex flex-col items-center justify-center" style="background-color: #080707">
<div class="absolute container left-1/2 transform -translate-x-1/2 top-6 md:px-8 px-6 flex flex-col justify-start" style="max-width:1140px;">
Expand Down Expand Up @@ -214,6 +214,7 @@ import Layout from '../layouts/Layout.astro';
}
}

// Start animation in onLoad event otherwise animation might not run correctly
window.onload = () => {
runShuffleTimer(0, 0);
};
Expand Down

0 comments on commit 5b08a53

Please sign in to comment.