diff options
Diffstat (limited to 'src/pages/landing/product.astro')
| -rw-r--r-- | src/pages/landing/product.astro | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/pages/landing/product.astro b/src/pages/landing/product.astro new file mode 100644 index 0000000..238cd7e --- /dev/null +++ b/src/pages/landing/product.astro @@ -0,0 +1,41 @@ +--- +import Layout from '~/layouts/LandingLayout.astro'; + +import Hero from '~/components/widgets/Hero.astro'; +import CallToAction from '~/components/widgets/CallToAction.astro'; + +const metadata = { + title: 'Product Details Landing Page Demo', +}; +--- + +<Layout metadata={metadata}> + <!-- Hero2 Widget ******************* --> + + <Hero + tagline="Product Details Demo" + title="Product Landing Page: Showcase with Precision and Passion!" + subtitle="Step-by-step guide to designing a Landing Page that highlights every facet of your product or service." + 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-1473188588951-666fce8e7c68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2174&q=80', + 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!" + actions={[ + { + variant: 'primary', + text: 'Download Template', + href: 'https://github.com/onwidget/astrowind', + icon: 'tabler:download', + }, + ]} + /> +</Layout> |
