diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-28 16:34:52 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-28 16:34:52 +0100 |
commit | d6c7fad43961975026a7e4e9ae21406f505e0a2e (patch) | |
tree | 76e205167ac203111f6272841e82352f0201b256 /apps/website/src/layouts | |
parent | bf5075ed85bafd9c0b2b5e0a05df68a78b7da04f (diff) | |
download | Nexus-d6c7fad43961975026a7e4e9ae21406f505e0a2e.tar.gz Nexus-d6c7fad43961975026a7e4e9ae21406f505e0a2e.tar.bz2 Nexus-d6c7fad43961975026a7e4e9ae21406f505e0a2e.zip |
fullpage.js
Diffstat (limited to 'apps/website/src/layouts')
-rw-r--r-- | apps/website/src/layouts/Layout.astro | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/apps/website/src/layouts/Layout.astro b/apps/website/src/layouts/Layout.astro index f5d4df9..8653d90 100644 --- a/apps/website/src/layouts/Layout.astro +++ b/apps/website/src/layouts/Layout.astro @@ -18,29 +18,31 @@ const { --- <!doctype html> - <html lang="en"> - <head> - <meta charset="UTF-8"/> - <meta name="description" content={description}/> - <meta name="viewport" content="width=device-width"/> - <link rel="icon" type="image/svg+xml" href={favicon}/> - <meta name="generator" content={Astro.generator}/> - - <link rel="preconnect" href="https://fonts.googleapis.com"/> - <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/> - <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"/> - <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&display=swap" rel="stylesheet"/> - - <title>{title}</title> - </head> - - <body class="bg-gray-50 overflow-x-hidden"> - <Navbar /> - - <main class="min-h-screen h-auto"> - <slot/> - </main> - +<html lang="en"> + <head> + <meta charset="UTF-8"/> + <meta name="description" content={description}/> + <meta name="viewport" content="width=device-width"/> + <link rel="icon" type="image/svg+xml" href={favicon}/> + <meta name="generator" content={Astro.generator}/> + + <link rel="preconnect" href="https://fonts.googleapis.com"/> + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/> + <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"/> + <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&display=swap" rel="stylesheet"/> + + <title>{title}</title> + <script src="/libs/fullpage.min.js" defer></script> + <script src="/scripts/scroll.js" defer></script> + </head> + + <body class="bg-gray-50 overflow-x-hidden"> + <Navbar /> + + <main class="min-h-screen h-auto flex flex-col gap-40" id="fullpage"> + <slot/> <Footer/> - </body> - </html> + </main> + + </body> +</html> |