Updated code
This commit is contained in:
parent
1e13e55029
commit
a6cdae9f55
BIN
public/assets/img/projects/edward.jpg
Normal file
BIN
public/assets/img/projects/edward.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 118 KiB |
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="container">
|
<div class="footer-container">
|
||||||
<div class="logo">Kamil<span class="logo-element">Craft</span></div>
|
<div class="logo">Kamil<span class="logo-element">Craft</span></div>
|
||||||
<ul class="social-media">
|
<ul class="social-media">
|
||||||
<li class="social-link"
|
<li class="social-link"
|
||||||
@ -16,15 +16,19 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="container"></div>
|
||||||
</footer>
|
</footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@import "scss/default";
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
background-color: #323232;
|
background-color: #323232;
|
||||||
padding: 35px 0;
|
padding: 35px 0;
|
||||||
|
|
||||||
.container {
|
&-container {
|
||||||
|
@extend .container;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
@ -5,6 +5,7 @@ import About from '../views/About'
|
|||||||
import Projects from '../views/Projects'
|
import Projects from '../views/Projects'
|
||||||
import Project from '../views/Project'
|
import Project from '../views/Project'
|
||||||
import Contact from '../views/Contact'
|
import Contact from '../views/Contact'
|
||||||
|
import KamilCraftInfo from '../views/KamilCraftInfo'
|
||||||
import NotFound from '../views/NotFound'
|
import NotFound from '../views/NotFound'
|
||||||
|
|
||||||
Vue.use(VueRouter)
|
Vue.use(VueRouter)
|
||||||
@ -52,6 +53,14 @@ const routes = [
|
|||||||
},
|
},
|
||||||
component: Contact
|
component: Contact
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/info',
|
||||||
|
name: 'KamilCraftProject',
|
||||||
|
meta: {
|
||||||
|
title: 'KamilCraft Project'
|
||||||
|
},
|
||||||
|
component: KamilCraftInfo
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '*',
|
path: '*',
|
||||||
name: '404',
|
name: '404',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user