Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.

Commit df9183b

Browse files
push updates
1 parent 7835637 commit df9183b

File tree

7 files changed

+256
-305
lines changed

7 files changed

+256
-305
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ node_modules
1010
.output
1111
vite.config.js.timestamp-*
1212
vite.config.ts.timestamp-*
13+
upload.bat

package-lock.json

+235-302
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/card/card.svelte

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
.card:hover
5454
{
5555
background-color: var(--hover-bg);
56-
cursor: pointer;
5756
}
5857
5958
.hero

src/lib/faq/faq.svelte

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
.card:hover
5555
{
5656
background-color: var(--hover-bg);
57-
cursor: pointer;
5857
}
5958
6059
.hero

src/routes/+page.svelte

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import { TextBlock } from "fluent-svelte";
33
import Card from "../lib/card/card.svelte";
4+
import { InfoBar } from "fluent-svelte";
45
56
const featureCards = [
67
{
@@ -36,6 +37,14 @@
3637
];
3738
</script>
3839
<div id="container">
40+
41+
<!--Todo: fix container spacing-->
42+
<br><br><br><br>
43+
<InfoBar
44+
title="Maintenance warning"
45+
message="This website will be available for system maintenance and updates from 9:00 AM 4/20/2024 to 5:00 PM 4/21/2024 eastern standard time."
46+
severity="caution"
47+
closable={false}/>
3948
<div id="intro">
4049
<TextBlock variant="display" style="margin-left: 20px; margin-right: 20px; font-size: 60px;">Introducing Rectify11</TextBlock>
4150
<TextBlock variant="bodyLarge" style="margin-top: 8px; margin-left: 20px; margin-right: 20px;">Rectify11 improves the consistency of Windows 11 by modifying system files in a safe way, and by using various programs to improve the Windows 11 experience.</TextBlock>

src/routes/faq/+page.svelte

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script lang="ts">
22
import Faq from "$lib/faq/faq.svelte";
33
import { TextBlock } from "fluent-svelte";
4+
import { InfoBar } from "fluent-svelte";
45
export const prerender = true;
56
67
const faqCards = [
@@ -23,6 +24,14 @@
2324
];
2425
</script>
2526
<div id="container">
27+
<!--Todo: fix container spacing-->
28+
<br><br><br><br>
29+
<InfoBar
30+
title="Maintenance warning"
31+
message="This website will be available for system maintenance and updates from 9:00 AM 4/20/2024 to 5:00 PM 4/21/2024 eastern standard time."
32+
severity="caution"
33+
closable={false}/>
34+
2635
<div id="intro">
2736
<TextBlock variant="display" style="margin-left: 20px; margin-right: 20px; font-size: 60px;">Rectify11 FAQ</TextBlock>
2837
</div>
@@ -74,6 +83,7 @@
7483
justify-content: center;
7584
margin-top: 70px;
7685
vertical-align: middle;
86+
cursor: pointer;
7787
}
7888
</style>
7989

svelte.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config = {
1414
pages: 'build',
1515
assets: 'build',
1616
fallback: undefined,
17-
precompress: false,
17+
precompress: true,
1818
strict: true
1919
})
2020
}

0 commit comments

Comments
 (0)