-
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
1 parent
752c791
commit 2a91680
Showing
6 changed files
with
3 additions
and
170 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,23 +1,13 @@ | ||
<script setup> | ||
import Navbar from "./components/Navbar.vue"; | ||
import Footer from "./components/Footer.vue"; | ||
import { useGeneralStore } from "./stores/general"; | ||
import CountdownSection from "./pages/Home/CountdownSection.vue"; | ||
import LAnnouncementBanner from "./components/LAnnouncementBanner.vue"; | ||
const store = useGeneralStore(); | ||
const displaySite = () => { | ||
store.showCountdown = false; | ||
window.scrollTo(0, 0); | ||
}; | ||
</script> | ||
|
||
<template> | ||
<LAnnouncementBanner text="Mark your calendars, June 18th 12:00 GMT is the official launch date of $LTAI on Base" /> | ||
<Navbar v-show="!store.isCountdownDisplayed" /> | ||
<CountdownSection v-if="store.isCountdownDisplayed" :action="displaySite" /> | ||
<Navbar /> | ||
|
||
<RouterView v-else /> | ||
<RouterView /> | ||
<Footer /> | ||
</template> |
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
import { createApp } from "vue"; | ||
import { createPinia } from "pinia"; | ||
import "./style.css"; | ||
import App from "./App.vue"; | ||
import { router } from "./router.ts"; | ||
|
||
const pinia = createPinia(); | ||
|
||
createApp(App).use(router).use(pinia).mount("#app"); | ||
createApp(App).use(router).mount("#app"); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.