Update Astro core and fix ViewTransitions import

This commit is contained in:
Kent Joseph T. Palima
2026-04-29 02:27:15 +08:00
parent 85e7b19cd8
commit c0f87e52b1
60 changed files with 29951 additions and 752 deletions
@@ -0,0 +1,6 @@
{
"runtime": "nodejs22.x",
"handler": "dist/server/entry.mjs",
"launcherType": "Nodejs",
"supportsResponseStreaming": true
}
@@ -0,0 +1,3 @@
{
"type": "module"
}
@@ -0,0 +1,10 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Registration | UP IECEP">
<section class="registration-section">
<h1>Registration Portal</h1>
<strong>Coming soon</strong>
</section>
</Layout>
@@ -0,0 +1,11 @@
---
import ContactDetails from '../components/ContactDetails/ContactDetails.astro';
import Layout from '../layouts/Layout.astro';
---
<Layout title="Contact | UP IECEP">
<section class="contact-section">
<h1>Contact Us</h1>
<ContactDetails displayTitle={false} />
</section>
</Layout>
@@ -0,0 +1,9 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Get Licensed | UP IECEP">
<section>
<h1>Get Licensed</h1>
</section>
</Layout>
@@ -0,0 +1,14 @@
---
import ProjectsAndCampaigns from '../components/ProjectsAndCampaigns/ProjectsAndCampaigns.astro';
import Slider from '../components/Slider/Slider';
import Family from '../components/Family/Family.astro';
import AboutUs from '../components/AboutUs/AboutUs.astro';
import Layout from '../layouts/Layout.astro';
---
<Layout title="UP IECEP">
<Slider client:load />
<AboutUs />
<ProjectsAndCampaigns />
<Family />
</Layout>
@@ -0,0 +1,12 @@
---
import Layout from "../layouts/Layout.astro"
---
<Layout title="UP IECEP">
<section>
<a href="/">To Index</a>
</section>
<script is:inline>
console.log("test")
</script>
</Layout>
@@ -0,0 +1,10 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Shop | UP IECEP">
<section class="shop-section">
<h1>Shop</h1>
<strong>Coming soon</strong>
</section>
</Layout>