mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 04:54:23 +00:00
- Deleted GitHub callback and authentication handler files. - Added new component for displaying headlines. - Implemented hot news feed component with external API fetching. - Created dynamic news provider page with routing. - Developed news organization about page with animations and data fetching. - Introduced a code of conduct document.
15 lines
282 B
Vue
15 lines
282 B
Vue
<script setup lang="ts">
|
|
import Navigation from "~/components/navigation.vue";
|
|
import Footer from "~/components/footer.vue";
|
|
</script>
|
|
<template>
|
|
<nav>
|
|
<Navigation />
|
|
</nav>
|
|
<main class="pt-[60px]">
|
|
<slot />
|
|
</main>
|
|
<footer>
|
|
<Footer />
|
|
</footer>
|
|
</template>
|