diff --git a/app.vue b/app.vue
index 9fb724e..be6fa55 100644
--- a/app.vue
+++ b/app.vue
@@ -4,9 +4,9 @@ useHead({
lang: "en",
},
title: "",
- titleTemplate: "%s riyad",
+ titleTemplate: "%s",
meta: [
- { name: "description", content: "Al Asad Nur riyad" },
+ { name: "description", content: "Al Asad Nur riyad's Personal Blog Site" },
{ name: "twitter:card", content: "summary_large_image" },
{ name: "twitter:site", content: "@nuxt_js" },
{ name: "twitter:creator", content: "@nuxt_js" },
@@ -37,7 +37,7 @@ useHead({
/* Layout Transition */
.layout-enter-active,
.layout-leave-active {
- transition: all 0.3s;
+ transition: all 0.4s;
}
.layout-enter-from,
.layout-leave-to {
diff --git a/assets/img/sdf.jpg b/assets/img/sdf.jpg
index f3680ed..2e868bf 100644
Binary files a/assets/img/sdf.jpg and b/assets/img/sdf.jpg differ
diff --git a/assets/img/wave.png b/assets/img/wave.png
index 973d4c2..6a5d3cd 100644
Binary files a/assets/img/wave.png and b/assets/img/wave.png differ
diff --git a/assets/tile_background.png b/assets/tile_background.png
deleted file mode 100644
index 929e7eb..0000000
Binary files a/assets/tile_background.png and /dev/null differ
diff --git a/pages/blogs.vue b/pages/blogs.vue
index 508de35..cc6a0c8 100644
--- a/pages/blogs.vue
+++ b/pages/blogs.vue
@@ -3,9 +3,7 @@ definePageMeta({
layout: "list",
});
-const { data, pending } = await useLazyAsyncData("blogs", () =>
- queryContent("/").find()
-);
+const { data } = useLazyAsyncData("blogs", () => queryContent("/").find());
const getAllPost = computed(() => {
const allpost = data.value || [];
@@ -30,12 +28,7 @@ const getAllPost = computed(() => {
-
-
+
-const { data, pending } = await useLazyAsyncData("index", () =>
- queryContent("/").find()
-);
+const { data } = useLazyAsyncData("index", () => queryContent("/").find());
// get all the unique types from content
const getTopCategory = computed(() => {
@@ -37,14 +35,7 @@ const getRecentContent = computed(() => {
-
-
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Minima
- accusamus maxime optio neque praesentium! Id ipsa deleniti vero magni
- expedita?
-
-
-
+
RECENTLY PUBLISHED
@@ -58,13 +49,8 @@ const getRecentContent = computed(() => {
-
-
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam labore
- accusamus sit distinctio fugit commodi quam debitis ratione alias illum?
-
-
-
+
+
TOP CATEGORIES
diff --git a/pages/tags/[topic].vue b/pages/tags/[topic].vue
index 90b281a..107dc42 100644
--- a/pages/tags/[topic].vue
+++ b/pages/tags/[topic].vue
@@ -8,7 +8,7 @@ const route = useRoute();
const routeType = computed(() => {
return route.params.topic || "";
});
-const { data } = await useLazyAsyncData("topic", () =>
+const { data } = useLazyAsyncData("topic", () =>
queryContent(`/${routeType.value}`).find()
);
diff --git a/pages/tags/index.vue b/pages/tags/index.vue
index 1464d84..6e9c3b4 100644
--- a/pages/tags/index.vue
+++ b/pages/tags/index.vue
@@ -2,7 +2,7 @@
definePageMeta({
layout: "list",
});
-const { data } = await useLazyAsyncData("tags", () => queryContent("/").find());
+const { data } = useLazyAsyncData("tags", () => queryContent("/").find());
const getTopCategory = computed(() => {
const allpost = data.value || [];
diff --git a/public/img/sdf.jpg b/public/img/sdf.jpg
index f3680ed..2e868bf 100644
Binary files a/public/img/sdf.jpg and b/public/img/sdf.jpg differ