Start filling the content of the landing pages demos.
This commit is contained in:
@ -2,6 +2,7 @@
|
|||||||
import Layout from '~/layouts/LandingLayout.astro';
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
import Hero2 from '~/components/widgets/Hero2.astro';
|
||||||
|
import CallToAction from "~/components/widgets/CallToAction.astro"
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Click-through Landing Page Demo',
|
title: 'Click-through Landing Page Demo',
|
||||||
@ -12,14 +13,24 @@ const metadata = {
|
|||||||
<!-- Hero2 Widget ******************* -->
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
<Hero2
|
<Hero2
|
||||||
tagline="Click-through Landing Demo"
|
tagline="Click-through Demo"
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
title="Click-through Landing Page: The Perfect Bridge to Conversion!"
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
subtitle="Learn how to design a Click-Through Landing Page that seamlessly guides visitors to your main offer."
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
image={{
|
image={{
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
||||||
alt: 'AstroWind Hero Image',
|
alt: 'Click-through Landing Page Hero Image',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
---
|
---
|
||||||
import Layout from '~/layouts/LandingLayout.astro';
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
import Hero from '~/components/widgets/Hero.astro';
|
||||||
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Lead Generation Landing Page Demo',
|
title: 'Lead Generation Landing Page Demo',
|
||||||
@ -11,15 +12,25 @@ const metadata = {
|
|||||||
<Layout metadata={metadata}>
|
<Layout metadata={metadata}>
|
||||||
<!-- Hero2 Widget ******************* -->
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
<Hero2
|
<Hero
|
||||||
tagline="Lead Generation Landing Demo"
|
tagline="Lead Generation Landing Demo"
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
title="Effective Lead Generation Landing Page: Unlock the Secrets"
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
subtitle="Discover the secrets to creating a Landing Page that turns curious visitors into eager leads. (Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience.)"
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
image={{
|
image={{
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
src: 'https://images.unsplash.com/photo-1597423498219-04418210827d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1674&q=80',
|
||||||
alt: 'AstroWind Hero Image',
|
alt: 'Magnet attracting screws. Lead generation landing page demo',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
import Layout from '~/layouts/LandingLayout.astro';
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
import Hero2 from '~/components/widgets/Hero2.astro';
|
||||||
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Coming Soon Landing Page',
|
title: 'Pre-Launch Landing Page',
|
||||||
};
|
};
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -12,14 +13,24 @@ const metadata = {
|
|||||||
<!-- Hero2 Widget ******************* -->
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
<Hero2
|
<Hero2
|
||||||
tagline="Coming Soon Landing Demo"
|
tagline="Pre-launch Demo"
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
title="Pre-launch Landing Page: Build the Hype Before the Big Reveal!"
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
subtitle="Craft a tantalizing Coming Soon or Pre-Launch Landing Page that leaves visitors eagerly awaiting your launch."
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
image={{
|
image={{
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
src: 'https://images.unsplash.com/photo-1558803116-c1b4ac867b31?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80',
|
||||||
alt: 'AstroWind Hero Image',
|
alt: 'Store with a Coming Soon sign. Pre-launch Landing Page',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
---
|
---
|
||||||
import Layout from '~/layouts/LandingLayout.astro';
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
import Hero from '~/components/widgets/Hero.astro';
|
||||||
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Product Details Landing Page Demo',
|
title: 'Product Details Landing Page Demo',
|
||||||
@ -11,15 +12,25 @@ const metadata = {
|
|||||||
<Layout metadata={metadata}>
|
<Layout metadata={metadata}>
|
||||||
<!-- Hero2 Widget ******************* -->
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
<Hero2
|
<Hero
|
||||||
tagline="Product Details Landing Demo"
|
tagline="Product Details Demo"
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
title="Product Landing Page: Showcase with Precision and Passion!"
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
subtitle="Step-by-step guide to designing a Landing Page that highlights every facet of your product or service."
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
image={{
|
image={{
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
src: 'https://images.unsplash.com/photo-1473188588951-666fce8e7c68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2174&q=80',
|
||||||
alt: 'AstroWind Hero Image',
|
alt: 'A spotlight on a product. Product Details Landing Page Demo',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
import Layout from '~/layouts/LandingLayout.astro';
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
import Hero2 from '~/components/widgets/Hero2.astro';
|
||||||
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Sales Landing Page Demo',
|
title: 'Sales Landing Page Demo',
|
||||||
@ -12,14 +13,24 @@ const metadata = {
|
|||||||
<!-- Hero2 Widget ******************* -->
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
<Hero2
|
<Hero2
|
||||||
tagline="Sales Landing Demo"
|
tagline="Long-form Sales Demo"
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
title="Long-form Sales: Sell with a Story: The Long-form Way!"
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
subtitle="Dive deep into crafting a Landing Page that narrates, persuades, and converts."
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
image={{
|
image={{
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
src: 'https://images.unsplash.com/photo-1621452773781-0f992fd1f5cb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1626&q=80',
|
||||||
alt: 'AstroWind Hero Image',
|
alt: 'Children telling a story. Long-form Sales Landing Page demo',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
---
|
|
||||||
import Layout from '~/layouts/LandingLayout.astro';
|
|
||||||
|
|
||||||
import Hero2 from '~/components/widgets/Hero2.astro';
|
|
||||||
|
|
||||||
const metadata = {
|
|
||||||
title: 'Squeeze Landing Page Demo',
|
|
||||||
};
|
|
||||||
---
|
|
||||||
|
|
||||||
<Layout metadata={metadata}>
|
|
||||||
<!-- Hero2 Widget ******************* -->
|
|
||||||
|
|
||||||
<Hero2
|
|
||||||
tagline="Squeeze Landing Demo"
|
|
||||||
title="Unlock the Secrets to an Effective Lead Generation Landing"
|
|
||||||
subtitle="Where every click is a potential lead waiting to happen. Your Hero should grab attention instantly. Use a powerful headline that speaks directly to your target audience."
|
|
||||||
callToAction={{ text: 'Download App', href: 'https://github.com/onwidget/astrowind', icon: 'tabler:download' }}
|
|
||||||
callToAction2={{ text: 'Learn more', href: '#features' }}
|
|
||||||
image={{
|
|
||||||
src: 'https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
|
||||||
alt: 'AstroWind Hero Image',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Layout>
|
|
36
src/pages/landing/subscription.astro
Normal file
36
src/pages/landing/subscription.astro
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
import Layout from '~/layouts/LandingLayout.astro';
|
||||||
|
|
||||||
|
import Hero2 from '~/components/widgets/Hero2.astro';
|
||||||
|
import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||||
|
|
||||||
|
const metadata = {
|
||||||
|
title: 'Subscription Landing Page Demo',
|
||||||
|
};
|
||||||
|
---
|
||||||
|
|
||||||
|
<Layout metadata={metadata}>
|
||||||
|
<!-- Hero2 Widget ******************* -->
|
||||||
|
|
||||||
|
<Hero2
|
||||||
|
tagline="Subscription Landing Demo"
|
||||||
|
title="Subscription Landing Page: Turn Casual Browsers into Loyal Subscribers!"
|
||||||
|
subtitle="Unlock the formula for a Subscription Landing Page that keeps your audience coming back for more."
|
||||||
|
callToAction={{ text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' }}
|
||||||
|
callToAction2={{ text: 'Learn more', href: '#' }}
|
||||||
|
image={{
|
||||||
|
src: 'https://images.unsplash.com/photo-1593510987046-1f8fcfc512a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80',
|
||||||
|
alt: 'Ironic image associated with canceling a subscription. Subscription Landing Page Demo',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<CallToAction
|
||||||
|
title="Coming soon"
|
||||||
|
subtitle="We are working on the content of these demo pages. You will see them very soon. Stay tuned Stay tuned!"
|
||||||
|
callToAction={{
|
||||||
|
text: 'Get template',
|
||||||
|
href: 'https://github.com/onwidget/astrowind',
|
||||||
|
icon: 'tabler:download',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Layout>
|
Reference in New Issue
Block a user