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