19 lines
190 B
Vue
19 lines
190 B
Vue
<template>
|
|
<div>
|
|
<Header />
|
|
<Hero />
|
|
<Grid />
|
|
<Contact />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
|
|
<style>
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
</style>
|