forked from emre/www_projectmycelium_com
feat: redesign cloud page sections with improved layout and branding
- Added logo assets for featured applications (CryptPad, Gitea, Matrix, Nextcloud, Stalwart, LifeKit) - Restructured CallToAction, CloudBluePrint, and CloudUseCases components with consistent boxed layouts and border styling - Enhanced hover effects on architecture layers and use case cards with scale transforms - Updated button styling and improved responsive grid layouts for better visual hierarchy
This commit is contained in:
@@ -1,52 +1,61 @@
|
||||
import { H3, P, Eyebrow } from '@/components/Texts'
|
||||
"use client";
|
||||
|
||||
import { Container } from "@/components/Container";
|
||||
import { H3, P, Eyebrow } from "@/components/Texts";
|
||||
|
||||
export function CloudBluePrint() {
|
||||
const logos = [
|
||||
{ src: '/images/logo/cryptpad.png', href: 'https://cryptpad.fr' },
|
||||
{ src: '/images/logo/gitea.png', href: 'https://about.gitea.com' },
|
||||
{ src: '/images/logo/lifekit.png', href: '#' }, // No link available
|
||||
{ src: '/images/logo/matrix.png', href: 'https://matrix.org' },
|
||||
{ src: '/images/logo/nextcloud.png', href: 'https://nextcloud.com' },
|
||||
{ src: '/images/logo/stalwart.png', href: 'https://stalw.art' },
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="bg-white py-24 sm:py-32">
|
||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||
<Eyebrow color="accent">Featured Blueprint</Eyebrow>
|
||||
<H3 color="primary">Your Personal Sovereign Cloud Workspace</H3>
|
||||
<P color="primary">Digital Me is an example environment built to demonstrate what’s possible on top of the Mycelium Stack, a full personal cloud you can deploy, customize, or extend.
|
||||
Your files, communication, apps, and optional AI agent, all running privately on infrastructure you choose.</P>
|
||||
<div className="mx-auto mt-10 grid max-w-lg grid-cols-4 items-center gap-x-8 gap-y-10 sm:max-w-xl sm:grid-cols-6 sm:gap-x-10 lg:mx-0 lg:max-w-none lg:grid-cols-5">
|
||||
<img
|
||||
alt="Transistor"
|
||||
src="https://tailwindcss.com/plus-assets/img/logos/158x48/transistor-logo-gray-900.svg"
|
||||
width={158}
|
||||
height={48}
|
||||
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
|
||||
/>
|
||||
<img
|
||||
alt="Reform"
|
||||
src="https://tailwindcss.com/plus-assets/img/logos/158x48/reform-logo-gray-900.svg"
|
||||
width={158}
|
||||
height={48}
|
||||
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
|
||||
/>
|
||||
<img
|
||||
alt="Tuple"
|
||||
src="https://tailwindcss.com/plus-assets/img/logos/158x48/tuple-logo-gray-900.svg"
|
||||
width={158}
|
||||
height={48}
|
||||
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1"
|
||||
/>
|
||||
<img
|
||||
alt="SavvyCal"
|
||||
src="https://tailwindcss.com/plus-assets/img/logos/158x48/savvycal-logo-gray-900.svg"
|
||||
width={158}
|
||||
height={48}
|
||||
className="col-span-2 max-h-12 w-full object-contain sm:col-start-2 lg:col-span-1"
|
||||
/>
|
||||
<img
|
||||
alt="Statamic"
|
||||
src="https://tailwindcss.com/plus-assets/img/logos/158x48/statamic-logo-gray-900.svg"
|
||||
width={158}
|
||||
height={48}
|
||||
className="col-span-2 col-start-2 max-h-12 w-full object-contain sm:col-start-auto lg:col-span-1"
|
||||
/>
|
||||
</div>
|
||||
<section className="w-full max-w-8xl mx-auto bg-transparent">
|
||||
|
||||
{/* ✅ Boxed container */}
|
||||
<div className="max-w-7xl bg-white mx-auto pb-12 border border-t-0 border-b-0 border-gray-200">
|
||||
<Container>
|
||||
<div className="mx-auto max-w-4xl sm:text-center">
|
||||
<Eyebrow className="text-cyan-500">Featured Blueprint</Eyebrow>
|
||||
|
||||
<H3 className="text-3xl lg:text-4xl font-medium tracking-tight text-gray-900 mt-2">
|
||||
Your Personal Sovereign Cloud Workspace
|
||||
</H3>
|
||||
|
||||
<P className="mt-6 text-lg text-gray-600">
|
||||
Digital Me is an example environment built to demonstrate what’s possible on top of the Mycelium Stack — a full personal cloud you can deploy, customize, or extend. Your files, communication, apps, and optional AI agent, all running privately on infrastructure you choose.
|
||||
</P>
|
||||
</div>
|
||||
|
||||
{/* ✅ 3x2 logo grid */}
|
||||
<div className="mt-12 grid grid-cols-3 gap-x-8 gap-y-12">
|
||||
{logos.map((logo, i) => (
|
||||
<div key={i} className="flex justify-center">
|
||||
<a
|
||||
href={logo.href}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="transition-transform duration-300 hover:scale-105"
|
||||
>
|
||||
<img
|
||||
src={logo.src}
|
||||
alt={`Logo ${i + 1}`}
|
||||
className="max-h-12 w-auto object-contain"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Container>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
{/* ✅ Bottom line + bottom spacer */}
|
||||
<div className="w-full border-b border-gray-200" />
|
||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-200 bg-transparent" />
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user