diff --git a/src/layout/UiFooter/UiFooter.vue b/src/layout/UiFooter/UiFooter.vue
new file mode 100644
index 0000000..61984a0
--- /dev/null
+++ b/src/layout/UiFooter/UiFooter.vue
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/src/layout/UiHeader/UiHeader.vue b/src/layout/UiHeader/UiHeader.vue
new file mode 100644
index 0000000..1fcc5d5
--- /dev/null
+++ b/src/layout/UiHeader/UiHeader.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
diff --git a/src/layout/UiLayout.vue b/src/layout/UiLayout.vue
index e69de29..3a91ca7 100644
--- a/src/layout/UiLayout.vue
+++ b/src/layout/UiLayout.vue
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/layout/UiMain/UiMain.vue b/src/layout/UiMain/UiMain.vue
new file mode 100644
index 0000000..64a7b97
--- /dev/null
+++ b/src/layout/UiMain/UiMain.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/layout/_data/footer-navigation.data.ts b/src/layout/_data/footer-navigation.data.ts
new file mode 100644
index 0000000..e46f218
--- /dev/null
+++ b/src/layout/_data/footer-navigation.data.ts
@@ -0,0 +1,36 @@
+const footerNavigation = [
+ {
+ name: 'Главная',
+ path: '/',
+ },
+ {
+ name: 'Книга I',
+ path: '/books/1',
+ },
+ {
+ name: 'Книга II',
+ path: '/books/2',
+ },
+ {
+ name: 'Отзывы',
+ path: '/feedback',
+ },
+ {
+ name: 'Корзина',
+ path: '/cart',
+ },
+ {
+ name: 'Оплата',
+ path: '/buy',
+ },
+ {
+ name: 'Вопрос-ответ',
+ path: '/question',
+ },
+ {
+ name: 'Политика конфидинциальности',
+ path: '/privacy',
+ },
+]
+
+export default footerNavigation