diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index f26a64d..754e9b8 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,109 +1,104 @@
---
export interface Props {
- title: string;
+ title: string;
}
const { title } = Astro.props;
-
-import Footer from '../components/Footer.astro';
---
-
-
-
-
-
-
- {title}
-
-
-
-
-
-
- body {
- margin: 0;
- }
+
+ code {
+ font-family: Menlo, Monaco, Lucida Console, Liberation Mono,
+ DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
+ }
-
+ .text-gradient {
+ font-weight: 900;
+ background-image: var(--ayo-gradient);
+ animation: pulse 4s ease-in-out infinite;
+ background-size: 500% 500%;
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ background-size: 100% 200%;
+ background-position-y: 100%;
+ border-radius: 0.4rem;
+ }
+
+