|
1 | | -<script lang="ts" context="module"> |
2 | | - import { browser, dev } from '$app/env'; |
3 | | -
|
4 | | - // we don't need any JS on this page, though we'll load |
5 | | - // it in dev so that we get hot module replacement... |
6 | | - export const hydrate = dev; |
7 | | -
|
8 | | - // ...but if the client-side router is already loaded |
9 | | - // (i.e. we came here from elsewhere in the app), use it |
10 | | - export const router = browser; |
11 | | -
|
12 | | - // since there's no dynamic data here, we can prerender |
13 | | - // it so that it gets served as a static asset in prod |
14 | | - export const prerender = true; |
15 | | -</script> |
16 | | - |
17 | 1 | <script lang="ts"> |
18 | 2 | // Start: Local Imports |
19 | 3 | // Components |
|
44 | 28 |
|
45 | 29 | <!-- Start: About page section --> |
46 | 30 | <div class="flex flex-col justify-center items-start max-w-2xl mx-auto mb-16"> |
47 | | - <h1 class="font-bold text-3xl md:text-5xl tracking-tight mb-4 dark:text-white"> About Page </h1> |
| 31 | + <h1 class="font-bold text-3xl md:text-5xl tracking-tight mb-4 text-black dark:text-white"> About Me </h1> |
48 | 32 | <div class="mb-8 prose leading-6 text-gray-600 dark:text-gray-400"> |
49 | 33 | <p> |
50 | | - Hey, I'm Sveltekit Blogger. I'm a Software Developer, writer and creator of |
| 34 | + Hey, I'm Sveltekit Blogger. I'm a Software Developer, writer and creator of |
51 | 35 | <ExternalLink href="https://github.com/navneetsharmaui/sveltkit-starter" |
52 | 36 | >Sveltekit Starter Project</ExternalLink |
53 | | - > |
54 | | - and |
55 | | - <ExternalLink href="https://github.com/navneetsharmaui/sveltkit-starter" |
| 37 | + > and <ExternalLink href="https://github.com/navneetsharmaui/sveltkit-starter" |
56 | 38 | >Sveltekit Blog Project</ExternalLink |
57 | 39 | > |
58 | 40 | </p> |
|
0 commit comments