Skip to content

Commit

Permalink
feat: regensis
Browse files Browse the repository at this point in the history
  • Loading branch information
okhaimie-dev committed Oct 6, 2023
1 parent 0969635 commit 9d3dfa0
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 295 deletions.
7 changes: 3 additions & 4 deletions src/app/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ export default async function Blog() {
return (
<>
<PageIntro eyebrow="Blog" title="The latest articles and news">
<p>
Stay up-to-date with the latest industry news as our marketing teams
finds new ways to re-purpose old CSS tricks articles.
<p className='text-gray-300'>
Stay up-to-date with the latest industry news.
</p>
</PageIntro>

Expand Down Expand Up @@ -64,7 +63,7 @@ export default async function Blog() {
</div>
</dd>
</dl>
<p className="mt-6 max-w-2xl text-base text-neutral-600">
<p className="mt-6 max-w-2xl text-base text-gray-300">
{article.description}
</p>
<Button
Expand Down
10 changes: 5 additions & 5 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function CaseStudies({
title="Securing and scaling the decentralized future"
className="mt-24 sm:mt-32 lg:mt-40"
>
<p className='text-white'>
<p className="text-white">
We make decentralized networks enterprise-ready. Our blockchain DevOps
and SRE secure web3 technologies and scale them to support widespread
adoption.
Expand All @@ -82,7 +82,7 @@ function CaseStudies({
<FadeInStagger className="grid grid-cols-1 gap-8 lg:grid-cols-3">
{caseStudies.map((caseStudy) => (
<FadeIn key={caseStudy.href} className="flex">
<article className="relative flex w-full flex-col rounded-3xl p-6 ring-1 ring-neutral-950/5 transition hover:bg-neutral-50 sm:p-8">
<article className="relative flex w-full flex-col rounded-3xl bg-neutral-950 p-6 ring-1 ring-neutral-950/5 transition hover:bg-neutral-900 sm:p-8">
<h3>
<Link href={caseStudy.href}>
<span className="absolute inset-0 rounded-3xl" />
Expand All @@ -109,7 +109,7 @@ function CaseStudies({
<p className="mt-6 font-display text-2xl font-semibold text-white">
{caseStudy.title}
</p>
<p className="mt-4 text-base text-neutral-600">
<p className="mt-4 text-base text-gray-200">
{caseStudy.description}
</p>
</article>
Expand Down Expand Up @@ -187,7 +187,7 @@ export default async function Home() {
<h1 className="font-display text-5xl font-medium tracking-tight text-white [text-wrap:balance] sm:text-7xl">
Building the Infrastructure for Web3&apos;s Future
</h1>
<p className="mt-6 text-xl font-medium text-white">
<p className="mt-6 text-xl font-medium text-gray-400">
Our team of DevOps and SRE engineers is dedicated to building
excellent blockchain infrastructure. By leveraging our specialized
knowledge, we build the foundational systems that allow you to focus
Expand All @@ -202,7 +202,7 @@ export default async function Home() {

<Testimonial
className="mt-24 sm:mt-32 lg:mt-40"
client={{ name: 'Phobia', logo: logoPhobiaDark }}
client={{ name: 'Phobia', logo: logoPhobiaLight }}
>
The promise of blockchain is vast, but its success depends on the
strength of infrastructure supporting it. We pave the road for
Expand Down
270 changes: 0 additions & 270 deletions src/app/process/page.tsx

This file was deleted.

33 changes: 17 additions & 16 deletions src/app/work/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import { Container } from '@/components/Container'
import { FadeIn, FadeInStagger } from '@/components/FadeIn'
import { PageIntro } from '@/components/PageIntro'
import { Testimonial } from '@/components/Testimonial'
import logoBrightPath from '@/images/clients/bright-path/logo-dark.svg'
import logoFamilyFund from '@/images/clients/family-fund/logo-dark.svg'
import logoGreenLife from '@/images/clients/green-life/logo-dark.svg'
import logoHomeWork from '@/images/clients/home-work/logo-dark.svg'
import logoMailSmirk from '@/images/clients/mail-smirk/logo-dark.svg'
import logoNorthAdventures from '@/images/clients/north-adventures/logo-dark.svg'
import logoPhobia from '@/images/clients/phobia/logo-dark.svg'
import logoUnseal from '@/images/clients/unseal/logo-dark.svg'
import logoBrightPath from '@/images/clients/bright-path/logo-light.svg'
import logoFamilyFund from '@/images/clients/family-fund/logo-light.svg'
import logoGreenLife from '@/images/clients/green-life/logo-light.svg'
import logoHomeWork from '@/images/clients/home-work/logo-light.svg'
import logoMailSmirk from '@/images/clients/mail-smirk/logo-light.svg'
import logoNorthAdventures from '@/images/clients/north-adventures/logo-light.svg'
import logoPhobia from '@/images/clients/phobia/logo-light.svg'
import logoUnseal from '@/images/clients/unseal/logo-light.svg'
import { formatDate } from '@/lib/formatDate'
import { type CaseStudy, type MDXEntry, loadCaseStudies } from '@/lib/mdx'

Expand Down Expand Up @@ -65,7 +65,7 @@ function CaseStudies({
<p className="font-display text-4xl font-medium text-white">
<Link href={caseStudy.href}>{caseStudy.title}</Link>
</p>
<div className="mt-6 space-y-6 text-base text-neutral-600">
<div className="mt-6 space-y-6 text-base text-gray-400">
{caseStudy.summary.map((paragraph) => (
<p key={paragraph}>{paragraph}</p>
))}
Expand Down Expand Up @@ -149,12 +149,13 @@ export default async function Work() {
<>
<PageIntro
eyebrow="Our work"
title="Proven solutions for real-world problems."
title="Advancing industries through inspired engineering"
>
<p>
We believe in efficiency and maximizing our resources to provide the
best value to our clients. The primary way we do that is by re-using
the same five projects we’ve been developing for the past decade.
<p className="text-gray-400">
Leveraging CI/CD pipelines and proactive monitoring, we build and
manage next-gen platforms that drive business progress. By innovating
scalable systems and infrastructure, we make the impossible possible -
turning ideas into industry-advancing impact.
</p>
</PageIntro>

Expand All @@ -164,8 +165,8 @@ export default async function Work() {
className="mt-24 sm:mt-32 lg:mt-40"
client={{ name: 'Mail Smirk', logo: logoMailSmirk }}
>
We approached <em>Studio</em> because we loved their past work. They
delivered something remarkably similar in record time.
We don&apos;t just build web3 systems - we secure the foundation,
streamline the workflow, and keep the operation running 24/7.
</Testimonial>

<Clients />
Expand Down

0 comments on commit 9d3dfa0

Please sign in to comment.