Skip to content

Commit aa32c36

Browse files
author
kerbethecoder
committed
added the containers for the website
1 parent 0dde65c commit aa32c36

File tree

8 files changed

+69
-2
lines changed

8 files changed

+69
-2
lines changed

the-notepad/src/App.vue

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
<script setup></script>
1+
<script setup>
2+
import {
3+
Activities,
4+
Footer,
5+
Header,
6+
Hero,
7+
Lessons,
8+
Technologies,
9+
} from './containers';
10+
</script>
211

312
<template>
4-
<div class="text-3xl font-bold underline">h1</div>
13+
<div>
14+
<div>
15+
<Header />
16+
<Hero />
17+
</div>
18+
19+
<Technologies />
20+
<Lessons />
21+
<Activities />
22+
<Footer />
23+
</div>
524
</template>
625

726
<style scoped></style>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Activities</div>
5+
</template>
6+
7+
<style scoped></style>

the-notepad/src/containers/Footer.vue

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Footer</div>
5+
</template>
6+
7+
<style scoped></style>

the-notepad/src/containers/Header.vue

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Header</div>
5+
</template>
6+
7+
<style scoped></style>

the-notepad/src/containers/Hero.vue

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Hero</div>
5+
</template>
6+
7+
<style scoped></style>
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Lessons</div>
5+
</template>
6+
7+
<style scoped></style>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script setup></script>
2+
3+
<template>
4+
<div>Technologies</div>
5+
</template>
6+
7+
<style scoped></style>

the-notepad/src/containers/index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export { default as Header } from './Header.vue';
2+
export { default as Hero } from './Hero.vue';
3+
export { default as Technologies } from './Technologies.vue';
4+
export { default as Lessons } from './Lessons.vue';
5+
export { default as Activities } from './Activities.vue';
6+
export { default as Footer } from './Footer.vue';

0 commit comments

Comments
 (0)