Files
amayo/AmayoWeb/src/App.vue
Shni 001e7a33a7 Add comprehensive setup and customization guides for AmayoWeb
- Introduced NGINX setup instructions for hosting the frontend application.
- Added detailed personalization steps for customizing the AmayoWeb landing page.
- Created a quickstart guide for rapid deployment and development setup.
- Included troubleshooting documentation for frontend loading issues.
- Provided VPS setup commands for configuring NGINX and deploying the application.
2025-11-04 13:01:37 -06:00

53 lines
1022 B
Vue

<template>
<div id="app">
<AnimatedBackground />
<IslandNavbar />
<HeroSection />
<router-view />
</div>
</template>
<script setup>
import { onMounted } from 'vue'
import AnimatedBackground from './components/AnimatedBackground.vue'
import IslandNavbar from './components/IslandNavbar.vue'
import HeroSection from './components/HeroSection.vue'
import { useTheme } from './composables/useTheme'
const { initTheme } = useTheme()
onMounted(() => {
initTheme()
})
</script>
<style>
:root {
--color-primary: #ff1744;
--color-secondary: #d50000;
--color-accent: #ff5252;
--gradient-primary: linear-gradient(135deg, #ff1744, #d50000);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #0a0a0a;
color: white;
overflow-x: hidden;
}
#app {
position: relative;
min-height: 100vh;
max-width: 100%;
margin: 0;
padding: 0;
}
</style>