12 lines
318 B
Vue
12 lines
318 B
Vue
<template>
|
|
<div class="relative w-[100%] min-h-screen">
|
|
<div class="flex flex-col">
|
|
<NavBar/>
|
|
<ProjectCard/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import NavBar from "@/components/HomeComponents/NavBar.vue";
|
|
import ProjectCard from "@/views/ProjectPage/ProjectCard.vue";
|
|
</script> |