-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
1,004 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,5 +96,8 @@ export default defineConfig({ | |
build: { | ||
cssMinify: 'lightningcss' | ||
} | ||
}, | ||
redirects: { | ||
'/oss': '/oss/0' | ||
} | ||
}) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
import Layout from '@layouts/layout.astro' | ||
import Buttons from '@components/main/buttons.astro' | ||
import CurrentPage from '@slides/oss/currentPage.astro' | ||
const { page = 1 } = Astro.params | ||
--- | ||
|
||
<Layout title='Open Source Para Todos'> | ||
<div class='w-[100dvw] h-[100dvh] fixed top-0 left-0 -z-50 bg-[#B3C8CF]/90'> | ||
</div> | ||
<main class='w-[100dvw] h-[100dvh] grid place-content-center'> | ||
<CurrentPage index={+page} /> | ||
<footer | ||
class='absolute bottom-0 left-0 w-full flex opacity-10 hover:opacity-100 transition-opacity duration-200 ease-in-out' | ||
> | ||
<Buttons rounded={false} /> | ||
</footer> | ||
</main> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
interface Props { | ||
index?: number | ||
} | ||
import Page1 from './page1.astro' | ||
import Page2 from './page2.astro' | ||
import Page3 from './page3.astro' | ||
import Page4 from './page4.astro' | ||
import Page5 from './page5.astro' | ||
import Page6 from './page6.astro' | ||
import Page7 from './page7.astro' | ||
import Page8 from './page8.astro' | ||
import Page9 from './page9.astro' | ||
import Page10 from './page10.astro' | ||
import Page11 from './page11.astro' | ||
import Page12 from './page12.astro' | ||
import Page13 from './page13.astro' | ||
import Page14 from './page14.astro' | ||
import Page15 from './page15.astro' | ||
const { index = 0 } = Astro.props | ||
--- | ||
|
||
{index === 0 && <Page1 />} | ||
{index === 1 && <Page2 />} | ||
{index === 2 && <Page3 />} | ||
{index === 3 && <Page4 />} | ||
{index === 4 && <Page5 />} | ||
{index === 5 && <Page6 />} | ||
{index === 6 && <Page7 />} | ||
{index === 7 && <Page8 />} | ||
{index === 8 && <Page9 />} | ||
{index === 9 && <Page10 />} | ||
{index === 10 && <Page11 />} | ||
{index === 11 && <Page12 />} | ||
{index === 12 && <Page13 />} | ||
{index === 13 && <Page14 />} | ||
{index === 14 && <Page15 />} | ||
|
||
<span | ||
class='bg-indigo-100 text-indigo-800 text-xs font-firaSans font-bold px-2.5 py-0.5 rounded dark:bg-indigo-900 dark:text-indigo-300 absolute right-0.5 top-0.5' | ||
>Page {+index + 1}</span | ||
> |
Oops, something went wrong.