diff --git a/landing/blog/Blog.ts b/landing/blog/Blog.ts new file mode 100644 index 0000000..23a20e3 --- /dev/null +++ b/landing/blog/Blog.ts @@ -0,0 +1,29 @@ +export type BlogPost = { + author: string, + authorImage: string, + created_at: string, + image: string, + title: string, + subtitle: string, + id: string +} + +export const homePostsIndexes = ref([ + 0 +]) + +export const blogPosts = ref([ + { + author: 'Antonio, CEO at Litlyx', + authorImage: 'AntonioVerdiglione.jpg', + image: 'posts/presenting-litlyx.jpg', + created_at: "Jul 16, 2024", + title: 'Presenting Litlyx', + subtitle: 'Our Why. Our Vision. Our Manifestation of Intent', + id: 'presenting-litlyx' + } +]); + +export const homePosts = computed(() => { + return blogPosts.value.filter((e, i) => homePostsIndexes.value.includes(i)); +}) \ No newline at end of file diff --git a/landing/components/blog/ArticleWrapper.vue b/landing/components/blog/ArticleWrapper.vue new file mode 100644 index 0000000..aca802b --- /dev/null +++ b/landing/components/blog/ArticleWrapper.vue @@ -0,0 +1,58 @@ + + + + + \ No newline at end of file diff --git a/landing/layouts/header.vue b/landing/layouts/header.vue index b4d1d23..976ca0d 100644 --- a/landing/layouts/header.vue +++ b/landing/layouts/header.vue @@ -33,6 +33,9 @@ nuxtApp.hook("page:finish", () => {
+ + Blog + Live demo @@ -40,12 +43,12 @@ nuxtApp.hook("page:finish", () => { Docs - - Pricing - GitHub + + Pricing +
{
+ +
+ Blog +
+
+
+ +
+
@@ -100,6 +113,16 @@ nuxtApp.hook("page:finish", () => {
+ + +
GitHub
+
+
+ +
+ +
Pricing @@ -107,13 +130,6 @@ nuxtApp.hook("page:finish", () => {
-
- - -
GitHub
-
-
@@ -164,11 +180,12 @@ nuxtApp.hook("page:finish", () => {
Product
- Pricing + Blog Docs Github + Pricing
Company
diff --git a/landing/pages/blog/index.vue b/landing/pages/blog/index.vue new file mode 100644 index 0000000..693708b --- /dev/null +++ b/landing/pages/blog/index.vue @@ -0,0 +1,76 @@ + + + + + + \ No newline at end of file diff --git a/landing/pages/blog/presenting-litlyx.vue b/landing/pages/blog/presenting-litlyx.vue new file mode 100644 index 0000000..8a61662 --- /dev/null +++ b/landing/pages/blog/presenting-litlyx.vue @@ -0,0 +1,138 @@ + + + + + \ No newline at end of file diff --git a/landing/public/blog/AntonioVerdiglione.jpg b/landing/public/blog/AntonioVerdiglione.jpg new file mode 100644 index 0000000..6385075 Binary files /dev/null and b/landing/public/blog/AntonioVerdiglione.jpg differ diff --git a/landing/public/blog/posts/presenting-litlyx.jpg b/landing/public/blog/posts/presenting-litlyx.jpg new file mode 100644 index 0000000..80b12f9 Binary files /dev/null and b/landing/public/blog/posts/presenting-litlyx.jpg differ diff --git a/landing/public/sitemap.xml b/landing/public/sitemap.xml index e07acca..a5ec763 100644 --- a/landing/public/sitemap.xml +++ b/landing/public/sitemap.xml @@ -1,45 +1,50 @@ - - https://litlyx.com/ - 2024-07-03T14:44:19+00:00 - daily - 1.00 - - - https://litlyx.com/pricing - 2024-07-04T10:45:11+00:00 - monthly - 0.80 - - - https://litlyx.com/contacts - 2024-07-04T10:45:11+00:00 - monthly - 0.80 - - - https://litlyx.com/privacy - 2024-07-04T10:45:11+00:00 - monthly - 0.80 - - - https://litlyx.com/terms - 2024-07-04T10:45:11+00:00 - monthly - 0.80 - - - https://litlyx.com/data_policy - 2024-07-04T10:45:11+00:00 - monthly - 0.80 - + xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> + + https://litlyx.com/ + 2024-07-03T14:44:19+00:00 + daily + 1.00 + + + https://litlyx.com/blog + 2024-07-16T10:45:11+00:00 + daily + 1.00 + + + https://litlyx.com/pricing + 2024-07-04T10:45:11+00:00 + monthly + 0.80 + + + https://litlyx.com/contacts + 2024-07-04T10:45:11+00:00 + monthly + 0.80 + + + https://litlyx.com/privacy + 2024-07-04T10:45:11+00:00 + monthly + 0.80 + + + https://litlyx.com/terms + 2024-07-04T10:45:11+00:00 + monthly + 0.80 + + + https://litlyx.com/data_policy + 2024-07-04T10:45:11+00:00 + monthly + 0.80 + \ No newline at end of file