mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
- Added new dependencies to requirements.txt: psycopg2-binary, pandas, and dotenv for improved functionality. - Enhanced main.css by adding 'scroll-smooth' to the html element for better scrolling experience.
15 lines
No EOL
281 B
Vue
15 lines
No EOL
281 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> |