File tree Expand file tree Collapse file tree 7 files changed +558
-17
lines changed Expand file tree Collapse file tree 7 files changed +558
-17
lines changed Original file line number Diff line number Diff line change 1
1
// See https://kit.svelte.dev/docs/types#app
2
2
// for information about these interfaces
3
3
declare global {
4
- namespace App {
5
- // interface Error {}
6
- // interface Locals {}
7
- // interface PageData {}
8
- // interface Platform {}
9
- }
4
+ namespace App {
5
+ // interface Error {}
6
+ // interface Locals {}
7
+ // interface PageData {}
8
+ // interface Platform {}
9
+ }
10
10
}
11
11
12
- export { } ;
12
+ export { }
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
- < head >
4
- < meta charset ="utf-8 " />
5
- < link rel ="icon " href ="%sveltekit.assets%/favicon.png " />
6
- < meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7
- %sveltekit.head%
8
- </ head >
9
- < body >
10
- < div > %sveltekit.body%</ div >
11
- </ body >
3
+ < head >
4
+ < meta charset ="utf-8 " />
5
+ < link rel ="icon " href ="%sveltekit.assets%/favicon.png " />
6
+ < meta name ="viewport " content ="width=device-width " />
7
+ %sveltekit.head%
8
+ </ head >
9
+ < body data-sveltekit-preload-data =" hover " >
10
+ < div style =" display: contents " > %sveltekit.body%</ div >
11
+ </ body >
12
12
</ html >
Original file line number Diff line number Diff line change 1
- /* Write your global styles here, in PostCSS syntax */
2
1
@tailwind base ;
3
2
@tailwind components;
4
3
@tailwind utilities;
4
+
5
+ @layer base {
6
+ html {
7
+ @apply bg-base-100 text-base-content font-sans;
8
+ }
9
+ }
10
+
11
+ :not (pre) > code[class*= 'language-' ],
12
+ pre [class* ='language-' ] {
13
+ @apply bg-transparent text-sm;
14
+ }
15
+
16
+ .mockup-code > pre:before {
17
+ @apply mr-0;
18
+ }
Original file line number Diff line number Diff line change
1
+ export const prerender = true
2
+ export const trailingSlash = 'always'
Original file line number Diff line number Diff line change 1
1
<script >
2
+ import ' @fontsource/inter/variable.css'
3
+ import ' prismjs/themes/prism-tomorrow.css'
2
4
import ' ../app.postcss'
5
+ import { dev } from ' $app/environment'
3
6
</script >
4
7
8
+ <svelte:head >
9
+ {#if ! dev }
10
+ <script async src =" https://www.googletagmanager.com/gtag/js?id=G-G9JC5N7N1H" ></script >
11
+ {/if }
12
+ <script >
13
+ window .dataLayer = window .dataLayer || []
14
+ function gtag () {
15
+ dataLayer .push (arguments )
16
+ }
17
+ gtag (' js' , new Date ())
18
+ gtag (' config' , ' G-G9JC5N7N1H' )
19
+ </script >
20
+ </svelte:head >
21
+
5
22
<slot />
You can’t perform that action at this time.
0 commit comments