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

Commit

Permalink
push updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaProductions committed Apr 14, 2024
1 parent 7835637 commit df9183b
Show file tree
Hide file tree
Showing 7 changed files with 256 additions and 305 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ node_modules
.output
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
upload.bat
537 changes: 235 additions & 302 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/lib/card/card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
.card:hover
{
background-color: var(--hover-bg);
cursor: pointer;
}
.hero
Expand Down
1 change: 0 additions & 1 deletion src/lib/faq/faq.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
.card:hover
{
background-color: var(--hover-bg);
cursor: pointer;
}
.hero
Expand Down
9 changes: 9 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import { TextBlock } from "fluent-svelte";
import Card from "../lib/card/card.svelte";
import { InfoBar } from "fluent-svelte";
const featureCards = [
{
Expand Down Expand Up @@ -36,6 +37,14 @@
];
</script>
<div id="container">

<!--Todo: fix container spacing-->
<br><br><br><br>
<InfoBar
title="Maintenance warning"
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."
severity="caution"
closable={false}/>
<div id="intro">
<TextBlock variant="display" style="margin-left: 20px; margin-right: 20px; font-size: 60px;">Introducing Rectify11</TextBlock>
<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>
Expand Down
10 changes: 10 additions & 0 deletions src/routes/faq/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import Faq from "$lib/faq/faq.svelte";
import { TextBlock } from "fluent-svelte";
import { InfoBar } from "fluent-svelte";
export const prerender = true;
const faqCards = [
Expand All @@ -23,6 +24,14 @@
];
</script>
<div id="container">
<!--Todo: fix container spacing-->
<br><br><br><br>
<InfoBar
title="Maintenance warning"
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."
severity="caution"
closable={false}/>

<div id="intro">
<TextBlock variant="display" style="margin-left: 20px; margin-right: 20px; font-size: 60px;">Rectify11 FAQ</TextBlock>
</div>
Expand Down Expand Up @@ -74,6 +83,7 @@
justify-content: center;
margin-top: 70px;
vertical-align: middle;
cursor: pointer;
}
</style>

Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const config = {
pages: 'build',
assets: 'build',
fallback: undefined,
precompress: false,
precompress: true,
strict: true
})
}
Expand Down

0 comments on commit df9183b

Please sign in to comment.