This commit is contained in:
2025-08-25 14:58:06 +02:00
parent fa0713ada4
commit 7763052dc9
2 changed files with 12 additions and 15 deletions

View File

@@ -1,10 +1,7 @@
import { CloudArrowUpIcon, LockClosedIcon, ServerIcon, SparklesIcon } from '@heroicons/react/20/solid' import { CloudArrowUpIcon, LockClosedIcon, ServerIcon, SparklesIcon } from '@heroicons/react/20/solid'
import { P, H2, H3, PS, PXS } from '@/components/text'
const features = [ export default function Story() {
]
export default function NewFeatures() {
return ( return (
<div className="overflow-hidden bg-bg-sand pb-0 pt-12 lg:pt-12"> <div className="overflow-hidden bg-bg-sand pb-0 pt-12 lg:pt-12">
<div className="mx-auto max-w-7xl px-6 lg:px-8"> <div className="mx-auto max-w-7xl px-6 lg:px-8">
@@ -19,19 +16,19 @@ export default function NewFeatures() {
</div> </div>
<div className="lg:ml-auto lg:pl-4 lg:pt-0"> <div className="lg:ml-auto lg:pl-4 lg:pt-0">
<div className="lg:max-w-lg"> <div className="lg:max-w-lg">
<p className="mt-2 text-3xl font-bold tracking-tight text-gray-800 sm:text-4xl">OUR STORY</p> <H2>Our Story</H2>
<p className="mt-4 text-xl leading-8 tracking-wide ITALIC font-normal text-gray-200"> <PS>
THE TALE OF SACRED ENERGIES OF THE NILE THE TALE OF SACRED ENERGIES OF THE NILE
</p> </PS>
<p className="mt-6 text-lg leading-7 font-light text-gray-500"> <PS>
Our founders, Isabelle Peeters and Kristof De Spiegeleer fell in love with the Nile and envisioned creating clean, unique, and high-energy boats for people to experience its sacred energies. Our founders, Isabelle Peeters and Kristof De Spiegeleer fell in love with the Nile and envisioned creating clean, unique, and high-energy boats for people to experience its sacred energies.
</p> </PS>
<p className="mt-6 text-lg leading-7 font-light text-gray-500"> <PS>
Their goal is to offer a sanctuary for the body, mind, and spirit, a safe space to open yourself to new experiences, and allow these sacred energies to enter your consciousness, helping you reconnect with your true essence. Their goal is to offer a sanctuary for the body, mind, and spirit, a safe space to open yourself to new experiences, and allow these sacred energies to enter your consciousness, helping you reconnect with your true essence.
</p> </PS>
<p className="mt-4 text-lg leading-7 font-light text-gray-500"> <PS>
We are in unique times, marked by the energies of the Aquarian Age. As chaotic as these times may seem, they bring a shift in energies and an opportunity for transformation. The Nile is a powerful energy vortex, and we are here to help you align with its frequencies. We are in unique times, marked by the energies of the Aquarian Age. As chaotic as these times may seem, they bring a shift in energies and an opportunity for transformation. The Nile is a powerful energy vortex, and we are here to help you align with its frequencies.
</p> </PS>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -74,7 +74,7 @@ export function PS({ className, children, ...props }) {
return ( return (
<p <p
className={clsx( className={clsx(
'text-base text-gray-700 font-extralight leading-snug', 'mt-4 text-base lg:text-base text-gray-600 font-extralight leading-snug',
className className
)} )}
{...props} {...props}