primevue-mirror/apps/showcase/pages/templates/poseidon/index.vue

194 lines
12 KiB
Vue
Raw Normal View History

2024-04-08 09:33:03 +00:00
<template>
2024-06-27 10:32:45 +00:00
<TemplateContainer :templateData="poseidonData">
<template #separator>
2024-04-08 09:33:03 +00:00
<PoseidonSeparator />
2024-06-27 10:32:45 +00:00
</template>
</TemplateContainer>
2024-04-08 09:33:03 +00:00
</template>
<script>
2024-07-23 08:48:52 +00:00
import TemplateConfiguration from '@/components/template/TemplateConfiguration.vue';
import TemplateFeatures from '@/components/template/TemplateFeatures.vue';
import TemplateFeaturesAnimation from '@/components/template/TemplateFeaturesAnimation.vue';
import TemplateHero from '@/components/template/TemplateHero.vue';
import TemplateLicense from '@/components/template/TemplateLicense.vue';
import PoseidonLogo from '@/components/template/logo/PoseidonLogo.vue';
2024-06-27 10:32:45 +00:00
2024-04-08 09:33:03 +00:00
export default {
data() {
return {
2024-06-27 10:32:45 +00:00
poseidonData: {
components: [
{
name: TemplateHero,
props: {
templateHeroData: {
logo: PoseidonLogo,
pattern: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/hero-background.png',
dashboard1: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/poseidon-hero-dashboard1.png',
dashboard2: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/poseidon-hero-dashboard2.png',
description: 'A modern and easy to use premium application template with various color schemes.Based on flat design language, it is fully responsive, touch optimized, built with SASS, CSS3 and HTML5.',
liveHref: 'https://poseidon.primevue.org',
docHref: 'https://poseidon.primevue.org/documentation',
pattern: {
className: 'select-none absolute z-[6] w-[72rem] md:w-[100rem] h-auto bottom-[25rem] -left-40 md:-bottom-12 xl:bottom-0 md:-left-48 xl:-left-28 opacity-90',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/hero-background.png'
}
}
2024-04-08 09:33:03 +00:00
}
2024-06-27 10:32:45 +00:00
},
2024-04-08 09:33:03 +00:00
{
2024-06-27 10:32:45 +00:00
name: TemplateLicense,
props: {
license: {
documentLink: 'https://poseidon.primevue.org/documentation/',
description: 'The download package is a Vite-based project containing all application source codes deployed at the live demo. The project code is written in JavaScript.',
showDiscount: false,
licenseDetails: [
{
title: 'Basic License',
price: '$59',
discount: '',
included: ['Non Commercial Usage', 'Single End Product, No Multi-Use', 'Lifetime Support', 'Unlimited Updates']
},
{
title: 'Extended License',
price: '$590',
discount: '',
included: ['Commercial Usage', 'Multiple End Products', 'Lifetime Support', 'Unlimited Updates']
}
]
}
}
},
{
name: TemplateFeaturesAnimation,
props: {
title: 'Features',
featuresData: [
{
id: 1,
title: 'Light / Dark / Dim Modes',
description: 'Poseidon offers you 3 uniquely designed layout modes to choose from; Light, Dim, and Dark.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-darkmode.png'
},
{
id: 2,
title: 'Component Themes',
description: 'Poseidon offers 12 built-in component themes with dark, light and dim options. Also if you wanna create your own theme you can do it by just defining couple SASS variables.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-component-themes.png'
},
{
id: 3,
title: '3 Menu Orientations',
description: 'Poseidon has 3 menu layouts to choose from; Static, Overlay and Horizontal.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-orientations.png',
type: 'inline-animation',
inlineFeaturesData: [
{
id: 1,
title: 'Static',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/Static.png'
},
{
id: 2,
title: 'Overlay',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/Overlay.png'
},
{
id: 3,
title: 'Horizontal',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/Horizontal.png'
}
]
}
]
}
2024-04-08 09:33:03 +00:00
},
{
2024-06-27 10:32:45 +00:00
name: TemplateConfiguration,
props: {
configurationData: {
title: 'Vue based on Vite',
description: 'Poseidon is powered by Vite to get started in no time following the best practices.'
}
}
},
{
name: TemplateFeaturesAnimation,
props: {
featuresData: [
{
id: 1,
title: 'PrimeFlex CSS Utilities',
description: 'PrimeFlex is a CSS utility library featuring various helpers such as a grid system, flexbox, spacing, elevation and more.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-utilities.png'
},
{
id: 2,
title: 'PrimeBlocks',
description: 'Fully compatible with PrimeBlocks, choose from the wide range of blocks and customize the way you like. Note that PrimeBlocks is not included in the template and requires a separate purchase.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-blocks.png'
},
{
id: 3,
title: 'PrimeIcons',
description: 'Poseidon ships with PrimeIcons, PrimeTeks modern icon library including a wide range of icons for your applications.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/features-animation-icons.png'
}
]
},
slots: {
description2: `
Fully compatible with <a href="https://blocks.primevue.org/">PrimeBlocks</a>, choose from the wide range of blocks and customize the way you like. Note that <a href="https://blocks.primevue.org/">PrimeBlocks</a> is not included in the
template and requires a separate purchase.`
}
},
{
name: TemplateFeatures,
props: {
featuresData: [
{
title: 'Fully Responsive',
description: 'Apollo is crafted to provide optimal viewing and interaction experience for a wide range of devices.',
src: 'https://primefaces.org/cdn/primevue/images/templates/poseidon/poseidon-features2-responsive.png'
},
{
title: 'Lifetime Support',
description: 'Apollo has a dedicated forum where lifetime support is delivered by engineers at PrimeTek in a timely manner.',
src: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-lifetime.png'
},
{
title: 'Top Notch Quality',
description: 'Superior standards with 100% compatibility for strict mode and linting tools.',
src: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-quality.png',
darkSrc: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-quality-dark.png'
},
{
title: 'Cross Browser Compatible',
description: 'First class support for Firefox, Safari, Chrome and Edge.',
src: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-compatible.png',
darkSrc: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-compatible-dark.png'
},
{
title: 'Customizable Design',
description: 'Fully customizable with a mixture of Sass and CSS variables.',
src: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-customizable.png',
darkSrc: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-customizable-dark.png'
},
{
title: 'Mobile Experience',
description: 'Touch optimized enhanced mobile experience with responsive design.',
src: 'https://primefaces.org/cdn/primevue/images/templates/apollo/apollo-features2-mobile.png'
}
],
displayType: 'vertical'
}
2024-04-08 09:33:03 +00:00
}
]
}
};
}
};
</script>