Changes: - Clicking on Home (icon and text) and Logo now routes to “/”, i.e. to the main page - New design is now complete
26 lines
761 B
Vue
26 lines
761 B
Vue
<script setup lang="ts">
|
|
import Feed from "./home_components/feed.vue";
|
|
import Contacts from "./home_components/contacts.vue";
|
|
import Legal from "./home_components/legal.vue";
|
|
import Navigationbar from "./home_components/navigationbar.vue";
|
|
import Trending from "./home_components/trending.vue";
|
|
import QuickSearch from "./home_components/quick_search.vue";
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div id="main" class="bg-hintergrund-farbe flex">
|
|
<div id="left" class="border border-b-grau w-72">
|
|
<navigationbar></navigationbar>
|
|
<trending></trending>
|
|
</div>
|
|
<div class="w-100p">
|
|
<feed></feed>
|
|
</div>
|
|
<div class="w-1/4">
|
|
<quick-search></quick-search>
|
|
<contacts></contacts>
|
|
<legal></legal>
|
|
</div>
|
|
</div>
|
|
</template> |