@@ -1,10 +1,10 @@
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
title: string;
|
||||
excerpt?: string;
|
||||
image?: string;
|
||||
slug?: string;
|
||||
}>();
|
||||
title: string
|
||||
excerpt?: string
|
||||
image?: string
|
||||
slug?: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -16,10 +16,9 @@ defineProps<{
|
||||
</h1>
|
||||
|
||||
<p class="text-sm">
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores labore
|
||||
cupiditate ducimus, ipsam harum, adipisci laudantium similique voluptate
|
||||
officiis sunt nesciunt dolorem repellat cumque obcaecati nulla, sed dolore
|
||||
unde. Atque!
|
||||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores labore cupiditate ducimus,
|
||||
ipsam harum, adipisci laudantium similique voluptate officiis sunt nesciunt dolorem repellat
|
||||
cumque obcaecati nulla, sed dolore unde. Atque!
|
||||
</p>
|
||||
<nuxt-link class="underline" :to="slug">
|
||||
{{ slug }}
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
<template>
|
||||
<svg
|
||||
width="66"
|
||||
height="31"
|
||||
viewBox="0 0 66 31"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<svg width="66" height="31" viewBox="0 0 66 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M0 2C0 0.89543 0.895431 0 2 0H64C65.1046 0 66 0.89543 66 2V29C66 30.1046 65.1046 31 64 31H2C0.895429 31 0 30.1046 0 29V2Z"
|
||||
fill="#E5E5E5"
|
||||
|
||||
@@ -1,19 +1,13 @@
|
||||
<template>
|
||||
<nav class="bg-gray-900 text-white py-5 border-b border-gray-700">
|
||||
<div class="container flex justify-between mx-auto">
|
||||
<NuxtLink to="/" class="text-2xl font-medium">
|
||||
Elon's Blog
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/" class="text-2xl font-medium"> Elon's Blog </NuxtLink>
|
||||
<ul class="nav flex space-x-5">
|
||||
<li>
|
||||
<NuxtLink to="/categories">
|
||||
Categories
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/categories"> Categories </NuxtLink>
|
||||
</li>
|
||||
<li>
|
||||
<NuxtLink to="/blogs">
|
||||
Blogs
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/blogs"> Blogs </NuxtLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
<script setup lang="ts">
|
||||
let x = ref('10')
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<nav class="py-5 border-b border-gray-700">
|
||||
<div class="container flex justify-between mx-auto">
|
||||
<NuxtLink to="/" class="text-2xl font-medium">
|
||||
Riyad's Blog
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/" class="text-2xl font-medium"> Riyad's Blog </NuxtLink>
|
||||
<ul class="nav flex space-x-5">
|
||||
<li>
|
||||
<NuxtLink to="/categories">
|
||||
Categories
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/categories"> Categories </NuxtLink>
|
||||
</li>
|
||||
<li>
|
||||
<NuxtLink to="/blogs">
|
||||
Blogs
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/blogs"> Blogs </NuxtLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user