summaryrefslogtreecommitdiff
path: root/src/pages/landing/sales.astro
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-21 21:56:55 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-21 21:56:55 +0300
commitc735556726e75428550a3d28a2cf58e2c8490b7d (patch)
treefd0ae29d1636b825abeedff6b99d3376bb383135 /src/pages/landing/sales.astro
Initial template
Diffstat (limited to 'src/pages/landing/sales.astro')
-rw-r--r--src/pages/landing/sales.astro41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/pages/landing/sales.astro b/src/pages/landing/sales.astro
new file mode 100644
index 0000000..f992a46
--- /dev/null
+++ b/src/pages/landing/sales.astro
@@ -0,0 +1,41 @@
+---
+import Layout from '~/layouts/LandingLayout.astro';
+
+import Hero2 from '~/components/widgets/Hero2.astro';
+import CallToAction from '~/components/widgets/CallToAction.astro';
+
+const metadata = {
+ title: 'Sales Landing Page Demo',
+};
+---
+
+<Layout metadata={metadata}>
+ <!-- Hero2 Widget ******************* -->
+
+ <Hero2
+ tagline="Long-form Sales Demo"
+ title="Long-form Sales: Sell with a Story: The Long-form Way!"
+ subtitle="Dive deep into crafting a Landing Page that narrates, persuades, and converts."
+ actions={[
+ { variant: 'primary', text: 'Call to Action', href: '#', icon: 'tabler:square-rounded-arrow-right' },
+ { text: 'Learn more', href: '#' },
+ ]}
+ image={{
+ 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: '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!"
+ actions={[
+ {
+ variant: 'primary',
+ text: 'Download Template',
+ href: 'https://github.com/onwidget/astrowind',
+ icon: 'tabler:download',
+ },
+ ]}
+ />
+</Layout>