FIX: Directories
Better directory structure
This commit is contained in:
parent
726c54d11f
commit
8943512328
16 changed files with 16 additions and 21 deletions
|
@ -14,7 +14,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { navigation } from '../utils/navigation'
|
import { navigation } from '~/utils/navigation'
|
||||||
|
|
||||||
const navElement = useTemplateRef('navElement')
|
const navElement = useTemplateRef('navElement')
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import FreeInfo from './FreeInfo.vue'
|
|
||||||
|
|
||||||
type Service = {
|
type Service = {
|
||||||
title: string
|
title: string
|
||||||
smallClaim: string
|
smallClaim: string
|
|
@ -37,7 +37,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { socials } from '../utils/socials'
|
import { socials } from '~/utils/socials'
|
||||||
|
|
||||||
const network = [
|
const network = [
|
||||||
{
|
{
|
|
@ -38,7 +38,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { android, css, dart, flutter, html, js, njs, nuxt, pcss, scss, ts, tw, vue } from '../utils/skills'
|
import { css, html, js, njs, nuxt, pcss, scss, ts, tw, vue } from '~/utils/skills'
|
||||||
|
|
||||||
const customers = [
|
const customers = [
|
||||||
{
|
{
|
|
@ -50,8 +50,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import FreeInfo from './FreeInfo.vue'
|
|
||||||
|
|
||||||
type Service = {
|
type Service = {
|
||||||
title: string
|
title: string
|
||||||
smallClaim: string
|
smallClaim: string
|
|
@ -27,7 +27,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { socials } from '../utils/socials'
|
import { socials } from '~/utils/socials'
|
||||||
|
|
||||||
const nav = [
|
const nav = [
|
||||||
{
|
{
|
|
@ -26,7 +26,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { navigation } from '../utils/navigation'
|
import { navigation } from '~/utils/navigation'
|
||||||
|
|
||||||
let observer: IntersectionObserver
|
let observer: IntersectionObserver
|
||||||
const header = useTemplateRef('header')
|
const header = useTemplateRef('header')
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
import { gl, njs, nuxt, pcss, react, rust, ts, vitest, vue, webstorm } from '../utils/skills'
|
import { gl, njs, nuxt, pcss, react, rust, ts, vitest, vue, webstorm } from '~/utils/skills'
|
||||||
|
|
||||||
const technologies = [nuxt, ts, pcss, vue, react, njs, vitest, gl, webstorm, rust]
|
const technologies = [nuxt, ts, pcss, vue, react, njs, vitest, gl, webstorm, rust]
|
||||||
|
|
|
@ -34,8 +34,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import type { RichText } from '@/components/RichText/Types'
|
||||||
import type { RichText } from './RichText/Types'
|
|
||||||
|
|
||||||
type Skill = {
|
type Skill = {
|
||||||
img: Function
|
img: Function
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<Header />
|
<SectionHeader />
|
||||||
<Burger />
|
<Burger />
|
||||||
<slot />
|
<slot />
|
||||||
<Footer />
|
<SectionFooter />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Booking />
|
<SectionBooking />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Contact />
|
<SectionContact />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Flatrate />
|
<SectionFlatrate />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Intro />
|
<SectionIntro />
|
||||||
<Skills />
|
<SectionSkills />
|
||||||
<SkillsEasy />
|
<SectionSkillsEasy />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Customers />
|
<SectionCustomers />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
Loading…
Add table
Add a link
Reference in a new issue