From 8b65a98e93100683788a3682a7af30d24e3b7f5e Mon Sep 17 00:00:00 2001 From: widgeter Date: Fri, 11 Aug 2023 20:03:36 +0200 Subject: [PATCH 1/8] Modify icons in Features3 on pricing page --- src/pages/pricing.astro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/pricing.astro b/src/pages/pricing.astro index 560e093..6e62aed 100644 --- a/src/pages/pricing.astro +++ b/src/pages/pricing.astro @@ -111,32 +111,32 @@ const metadata = { { title: 'Tiered Pricing Plans', description: 'Choose from a range of pricing plans designed to accommodate different budgets and requirements.', - icon: 'tabler:template', + icon: 'tabler:stairs', }, { title: 'Transparent Pricing', description: 'Clearly displayed pricing details for each plan, with no hidden costs or unexpected charges.', - icon: 'tabler:template', + icon: 'tabler:flip-vertical', }, { title: 'Secure Payment Methods', description: 'Secure payment gateways to protect your financial information during transactions.', - icon: 'tabler:template', + icon: 'tabler:shield-lock', }, { title: 'Instant Access', description: `Immediate access to your chosen plan's features and templates upon subscription.`, - icon: 'tabler:template', + icon: 'tabler:accessible', }, { title: 'Upgrade Value', description: 'Upgrade to higher-tier plans to unlock more features and benefits for an enhanced experience.', - icon: 'tabler:template', + icon: 'tabler:chevrons-up', }, { title: '24H support', description: 'Questions answered via live chat, email or phone, every calendar day.', - icon: 'tabler:template', + icon: 'tabler:headset', }, ]} /> From 2bf0ed49c1ab15f57f769c26858c12eb6dbd4b9d Mon Sep 17 00:00:00 2001 From: widgeter Date: Sat, 12 Aug 2023 13:35:57 +0200 Subject: [PATCH 2/8] Include a Features2 widget on services page --- src/pages/services.astro | 65 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/src/pages/services.astro b/src/pages/services.astro index 55ecc77..4bc4ffd 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,11 +1,72 @@ --- +import Features2 from '~/components/widgets/Features2.astro'; import Layout from '~/layouts/PageLayout.astro'; const metadata = { - title: "Services", + title: 'Services', }; --- - Services + + + From 69863488063bbf63957c65a4bfd8f2bc13add9a4 Mon Sep 17 00:00:00 2001 From: widgeter Date: Mon, 14 Aug 2023 11:39:44 +0200 Subject: [PATCH 3/8] Include WidgetWrapper in the Hero widget --- src/components/widgets/Hero.astro | 15 +++++++++++++-- src/pages/services.astro | 22 ++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro index cd98569..e835412 100644 --- a/src/components/widgets/Hero.astro +++ b/src/components/widgets/Hero.astro @@ -1,6 +1,7 @@ --- import { Icon } from 'astro-icon/components'; import { Picture } from '@astrojs/image/components'; +import WidgetWrapper from '../ui/WidgetWrapper.astro'; const { title = await Astro.slots.render('title'), @@ -9,10 +10,20 @@ const { callToAction = await Astro.slots.render('callToAction'), callToAction2 = await Astro.slots.render('callToAction2'), image = await Astro.slots.render('image'), + + id, + isDark = false, + classes = {}, + bg = await Astro.slots.render('bg'), } = Astro.props; --- -
+
@@ -94,4 +105,4 @@ const {
-
+ diff --git a/src/pages/services.astro b/src/pages/services.astro index 4bc4ffd..3217605 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,5 +1,6 @@ --- import Features2 from '~/components/widgets/Features2.astro'; +import Hero from '~/components/widgets/Hero.astro'; import Layout from '~/layouts/PageLayout.astro'; const metadata = { @@ -8,6 +9,27 @@ const metadata = { --- + + + + + Elevate your projects with our stunning templates + + + + Explore our meticulously crafted templates tailored to various industries and purposes. From captivating + presentations to functional website designs, we offer the tools you need to succeed. + + +
+
+
+ Date: Mon, 14 Aug 2023 11:56:46 +0200 Subject: [PATCH 4/8] Include a Testimonial on services page --- src/pages/services.astro | 42 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/pages/services.astro b/src/pages/services.astro index 3217605..03790b4 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,6 +1,7 @@ --- import Features2 from '~/components/widgets/Features2.astro'; import Hero from '~/components/widgets/Hero.astro'; +import Testimonials from '~/components/widgets/Testimonials.astro'; import Layout from '~/layouts/PageLayout.astro'; const metadata = { @@ -91,4 +92,45 @@ const metadata = { }, ]} /> + + + +
From 6817b500cd1a78d426fe6e1b0434388d4c548253 Mon Sep 17 00:00:00 2001 From: widgeter Date: Mon, 14 Aug 2023 12:07:27 +0200 Subject: [PATCH 5/8] Include a CallToAction widget on services page --- src/pages/services.astro | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/pages/services.astro b/src/pages/services.astro index 03790b4..c361266 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,4 +1,5 @@ --- +import CallToAction from '~/components/widgets/CallToAction.astro'; import Features2 from '~/components/widgets/Features2.astro'; import Hero from '~/components/widgets/Hero.astro'; import Testimonials from '~/components/widgets/Testimonials.astro'; @@ -12,7 +13,7 @@ const metadata = { - + Elevate your projects with our stunning templates @@ -133,4 +134,15 @@ const metadata = { icon: 'tabler:chevron-right', }} /> + + + + From 44f83d7cb73c7c1da7aa52c3e99e175b3ca1f15f Mon Sep 17 00:00:00 2001 From: widgeter Date: Mon, 14 Aug 2023 13:31:14 +0200 Subject: [PATCH 6/8] Include two Content widgets on services page --- src/pages/services.astro | 87 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 84 insertions(+), 3 deletions(-) diff --git a/src/pages/services.astro b/src/pages/services.astro index d44661c..1dd3254 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,5 +1,6 @@ --- import CallToAction from '~/components/widgets/CallToAction.astro'; +import Content from '~/components/widgets/Content.astro'; import Features2 from '~/components/widgets/Features2.astro'; import Hero from '~/components/widgets/Hero.astro'; import Testimonials from '~/components/widgets/Testimonials.astro'; @@ -94,6 +95,86 @@ const metadata = { ]} /> + + + + +

Main Features

+
+
+ + + + + +

Benefits

+
+
+ Date: Mon, 14 Aug 2023 14:11:18 +0200 Subject: [PATCH 7/8] Modify some texts on mobile-app page --- src/pages/landing/mobile-app.astro | 109 +++++++++++++---------------- 1 file changed, 49 insertions(+), 60 deletions(-) diff --git a/src/pages/landing/mobile-app.astro b/src/pages/landing/mobile-app.astro index d0f4257..5ec8312 100644 --- a/src/pages/landing/mobile-app.astro +++ b/src/pages/landing/mobile-app.astro @@ -40,7 +40,10 @@ const metadata = { Free template for @@ -66,27 +69,24 @@ const metadata = { columns={2} items={[ { - title: 'Download and Install the App', - description: - 'Morbi faucibus luctus quam, sit amet aliquet felis tempor id. Cras augue massa, ornare quis dignissim a, molestie vel nulla.', + title: 'Download and install the app', + description: `Begin your journey by downloading our user-friendly app from your device's app store or our official website.`, icon: 'tabler:square-number-1', }, { - title: 'Sign Up', + title: 'Sign up', description: - 'Vivamus porttitor, tortor convallis aliquam pretium, turpis enim consectetur elit, vitae egestas purus erat ac nunc nulla.', + 'Create your account by providing the necessary information, enabling you to access our full range of features.', icon: 'tabler:square-number-2', }, { - title: 'Browse Templates', - description: - 'Duis sed lectus in nisl vehicula porttitor eget quis odio. Aliquam erat volutpat. Nulla eleifend nulla id sem fermentum.', + title: 'Browse templates', + description: 'Explore our diverse collection of website templates, categorized for easy navigation.', icon: 'tabler:square-number-3', }, { - title: 'Preview and Select a Template', - description: - 'Duis sed lectus in nisl vehicula porttitor eget quis odio. Aliquam erat volutpat. Nulla eleifend nulla id sem fermentum.', + title: 'Preview and select a template', + description: `Visualize the potential of each template through previews, then choose the one that aligns best with your project's needs.`, icon: 'tabler:square-number-4', }, ]} @@ -99,33 +99,31 @@ const metadata = { @@ -270,17 +264,12 @@ const metadata = { - Get Started Now - - - Be very surprised by these huge fake numbers you are seeing on this page. Don't - waste more time! :P - - + /> From 2fe939d25ec1386177d2a00ab91851438d05c95e Mon Sep 17 00:00:00 2001 From: widgeter Date: Mon, 14 Aug 2023 14:29:09 +0200 Subject: [PATCH 8/8] Remove WidgetWrapper from Hero widget --- src/components/widgets/Hero.astro | 15 ++------------- src/pages/services.astro | 27 +++++++++------------------ 2 files changed, 11 insertions(+), 31 deletions(-) diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro index 1c46bf9..b39bed8 100644 --- a/src/components/widgets/Hero.astro +++ b/src/components/widgets/Hero.astro @@ -1,7 +1,6 @@ --- import { Icon } from 'astro-icon/components'; import Image from '~/components/common/Image.astro'; -import WidgetWrapper from '../ui/WidgetWrapper.astro'; const { title = await Astro.slots.render('title'), @@ -10,20 +9,10 @@ const { callToAction = await Astro.slots.render('callToAction'), callToAction2 = await Astro.slots.render('callToAction2'), image = await Astro.slots.render('image'), - - id, - isDark = false, - classes = {}, - bg = await Astro.slots.render('bg'), } = Astro.props; --- - +
@@ -104,4 +93,4 @@ const {
- +
diff --git a/src/pages/services.astro b/src/pages/services.astro index 1dd3254..9e49f6b 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -14,24 +14,15 @@ const metadata = { - - - Elevate your projects with our stunning templates - - - - Explore our meticulously crafted templates tailored to various industries and purposes. From captivating - presentations to functional website designs, we offer the tools you need to succeed. - - -
-
-
+