-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add values section in cto landing
- Loading branch information
1 parent
20bb90b
commit 3ee33a6
Showing
12 changed files
with
108 additions
and
13 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
const { icon, title, description } = Astro.props; | ||
--- | ||
|
||
<div class="grid text-white gap-7"> | ||
<img src={icon} class="h-[72px] w-[72px] md:h-[90px] md:w-[90px]" /> | ||
<h3 class="text-[28px] leading-[30px] md:text-4xl tracking-tight">{title}</h3> | ||
<p class="text-base leading-[26px]">{description}</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
import { grid_classes } from "../_grid"; | ||
import Pill from "../Pill.astro"; | ||
import Section from "../Section.astro"; | ||
import InfoBlock from "./InfoBlock.astro"; | ||
--- | ||
|
||
<Section | ||
idx="values-wrapper" | ||
contentClassName={grid_classes} | ||
className="bg-contrast" | ||
> | ||
<div | ||
class="grid gap-4 col-span-6 md:col-span-10 md:col-start-2 text-center justify-items-center" | ||
> | ||
<Pill>We’re 100% Focused on results</Pill> | ||
<h1 | ||
class="text-[44px] leading-[48px] md:text-[74px] md:leading-[81px] font-medium tracking-tight text-white" | ||
> | ||
Be Confident Knowing Your Strategy <span class="text-crocoder-yellow"> | ||
Gets Implemented | ||
</span> | ||
</h1> | ||
</div> | ||
<div id="values-grid" class="grid col-span-6 md:col-span-12"> | ||
<div class="bg-[#5362DBE5]/[0.9] p-12"> | ||
<InfoBlock | ||
icon="/target-streamline-core.svg" | ||
title="Transform Vision into Reality" | ||
description="Close the gap between strategy and execution with a partner who ensures your big-picture goals translate into measurable outcomes" | ||
/> | ||
</div> | ||
<div class="bg-[#3C3843E5]/90 p-12"> | ||
<InfoBlock | ||
icon="/management-streamline-ultimate.svg" | ||
title="Build High-Performing Teams Without Micromanagement" | ||
description="Empower your teams to operate independently by introducing sustainable processes and bringing in specialized expertise only where it’s needed" | ||
/> | ||
</div> | ||
<div class="bg-[#424C6DE5]/90 p-12"> | ||
<InfoBlock | ||
icon="/calendar-add-streamline-core.svg" | ||
title="Drive Operational Efficiency Across the Board" | ||
description="Eliminate redundancies, reduce inefficiencies, and accelerate timelines with repeatable systems tailored to your organization’s unique needs." | ||
/> | ||
</div> | ||
<div class="backdrop-blur-xl bg-white p-7"> | ||
<p> | ||
We were impressed by the proactive attitude [of CroCoder] and capacity | ||
to turn theory into practice. Their support and assistance was very | ||
timely and precise, always followed by concrete implementing steps. The | ||
small team has a strong multidisciplinary background and proved a good | ||
attitude to work in team with other consultants | ||
</p> | ||
</div> | ||
</div> | ||
</Section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters