Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Publish longevity manifesto
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Feb 14, 2024
1 parent 96b9427 commit 41f3ece
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 0 deletions.
54 changes: 54 additions & 0 deletions src/components/Infopages/Longevity.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<section>
<div class="max-w-7xl px-8 md:px-12 lg:px-32 mx-auto py-32 lg:pt-56">
<div class="relative max-w-3xl">
<span
class="text-transparent bg-clip-text font-medium tracking-widest bg-gradient-to-r from-cyan-400 via-cyan-500 to-indigo-500 text-xs uppercase"
>LAST UPDATED FEBRUARY 14, 2024</span
>
<p class="text-3xl mt-8 font-normal text-white">
Longevity Manifesto
</p>
</div>
</div>
</section>

<section class="relative">
<div class="max-w-7xl px-8 md:px-12 lg:px-32 mx-auto pb-12 md:py-12 relative">
<div class="grid grid-cols-1 gap-10 xl:gap-24">
<div
class="prose prose-strong:text-white prose-blockquote:border-l-white prose-a:text-cyan-500 hover:prose-a:text-white prose-headings:font-normal prose-headings:text-white prose-li:marker:text-cyan-500 text-slate-400 prose-code:text-white prose-blockquote:text-white/70 max-w-max"
>
<h3>Software made for eternity</h3>

<p>
<b>Tuist was built for the future of Xcode development.</b> We believe that code is abundant and should be owned by both everyone and no one.
</p>

<p>
Tuist GmbH, a technology startup from Berlin, Jessnerstrasse 27A 10247, is the sole owner of the Tuist trademark, and provides core contributors for Tuist. Tuist is MIT-Licensed, but Tuist Cloud is closed source and proprietary to secure the funding for Tuist.
</p>

<p>
With many active contributors, more than hundreds companies using Tuist, a sponsorships program, and a growing community, we are confident that Tuist will be around for a long time.
</p>

<p>
However, in the unlikely event of Tuist GmbH discontinuing to support the Tuist repositories, we'll re-license Tuist Cloud with a permissive license and transfer ownership of the repositories to the top contributors at that given time.
</p>

<p>
As long as Xcode projects exist, developers will continue to create exciting projects and prosper.
</p>

<p>
We’ll make sure they can build them, forever.
</p>

<p>
Pedro and Marek
</p>
</div>
</div>
</div>
</section>

8 changes: 8 additions & 0 deletions src/components/global/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,14 @@ import Blurgradientleft from "../assets/Blurgradientleft.astro";
About
</a>
</li>
<li>
<a
href="/longevity"
class="text-sm text-slate-400"
>
Longetivy Manifesto
</a>
</li>
<li>
<a
href="https://status.cloud.tuist.io"
Expand Down
30 changes: 30 additions & 0 deletions src/content/posts/2024/02/14/longevity.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: "Longevity"
categories: ["tuist", "release", "cloud"]
excerpt: "Tuist 4.1.0 is out with new features, improvements, and bug fixes. In this blog post, we'll cover the highlights of this release."
author: pepicrft
---

Tuist was built for the future of Xcode development. We believe that code is abundant and should be owned by both everyone and no one.

Tuist GmbH, a technology startup from Berlin, Jessnerstrasse 27A 10247, is the sole owner of the Tuist trademark and provides provides a


{/* ---
Software made for eternity
Cal.com is built for the future of the web. We believe that code is abundant and should be owned by both everyone and no one.
Cal.com, Inc., a technology startup from San Francisco, 2261 Market Street #4382, is the sole owner of the Cal.com trademark and provides the team of core contributors, however given the nature of our open core product, the core repository is a public good, licensed under AGPLv3.
An incredible list of 40+ individual investors has invested in the two funding rounds, providing a decade of runway with our current team size and monthly recurring revenue.
However, in the unlikely event of Cal.com, Inc. discontinuing to support the Cal.com repositories, we’ve set up agreements to transfer ownership to the top four contributors at that given time and in accordance with our contributor license agreements, all AGPLv3 and enterprise-licensed code will be relicensed as MIT.
Additionally, a nonprofit foundation shall be incorporated. The current leadership team and a list of early believers and investors have agreed to fund the newly formed foundation with at least five years of additional funding via donations. */}

As long as the web exists, humans will continue to create exciting connections and prosper.

We’ll make sure they can book someone's cal, forever.

Peer & Bailey
36 changes: 36 additions & 0 deletions src/pages/longevity.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import Longevity from "../components/Infopages/Longevity.astro";
import { AstroSeo } from "@astrolib/seo";
import metadata from '../utils/metadata.json';
---

<AstroSeo
title="Longevity Manifesto"
description=`Tuist is designed for the long-term and we want to make sure that it stays that way. This document is a manifesto that outlines how we plan to achieve that.`,
canonical={metadata.url}
openGraph={{
url: metadata.url,
title: "Longevity Manifesto",
description: `Tuist is designed for the long-term and we want to make sure that it stays that way. This document is a manifesto that outlines how we plan to achieve that.`,
images: [
{
url: `${metadata.url}/og-images/about.jpg`,
alt: "Longevity Manifesto",
type: "image/jpg",
height: 630,
width: 1200
},
],
site_name: "Tuist",
}}
twitter={{
handle: "@tuistio",
site: "@tuistio",
cardType: "summary_large_image",
}}
/>

<BaseLayout>
<Longevity />
</BaseLayout>

0 comments on commit 41f3ece

Please sign in to comment.