Skip to content

Commit

Permalink
add description section at top of solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
jojortz committed Jan 12, 2024
1 parent 7f14eac commit 0029769
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
8 changes: 6 additions & 2 deletions app/solutions/compliance/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import PageHero from "@/app/components/hero/PageHero";
import Container from "../../components/Container";
import SolutionsCard from "../../components/solutions/SolutionsCard";
import Section from "@/app/components/Section";

const Solutions = [
{
Expand All @@ -11,10 +12,13 @@ const Solutions = [
},
]

const SolutionsPage = () => {
const ComplianceSolutionsPage = () => {
return (
<div className="pb-10 w-full h-full">
<PageHero title="Compliance" description="Automate your compliance process with AI raters" />
<div className="flex flex-col items-center justify-center py-20">
<Section title="Automate your compliance process with AI raters" paragraphs={["Leverage CambioML to automate compliance checking and streamline your model release."]} center />
</div>
<Container>
<div className="pt-10 flex items-center justify-center">
<div className="max-w-[1200px] w-full h-full">
Expand All @@ -41,4 +45,4 @@ const SolutionsPage = () => {
)
}

export default SolutionsPage;
export default ComplianceSolutionsPage;
8 changes: 5 additions & 3 deletions app/solutions/fintech/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ const Solutions = [
},
]

const SolutionsPage = () => {
const FintechSolutionsPage = () => {
return (
<div className="pb-10 w-full h-full flex flex-col justify-center items-center">
<PageHero title="Fintech" description="Power your finance with AI" />
<Section title="Boost your revenue with your private LLMs" paragraphs={["Leverage CambioML's Confucia, our proprietary state-of-the-art finance and economics LLMs, to enhance your industry solutions. Confucia delivers deep financial insight, significantly improves market agility, and enhances portfolio performance. Build your private LLMs in a week instead of starting from scratch."]} center />
<div className="flex flex-col items-center justify-center py-20">
<Section title="Boost your revenue with your private LLMs" paragraphs={["Leverage CambioML's Confucia, our proprietary state-of-the-art finance and economics LLMs, to enhance your industry solutions. Confucia delivers deep financial insight, significantly improves market agility, and enhances portfolio performance. Build your private LLMs in a week instead of starting from scratch."]} center />
</div>
<Container>
<div className="pt-10 flex items-center justify-center">
<div className="max-w-[1200px] w-full h-full">
Expand All @@ -43,4 +45,4 @@ const SolutionsPage = () => {
)
}

export default SolutionsPage;
export default FintechSolutionsPage;
4 changes: 4 additions & 0 deletions app/solutions/manufacturing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import PageHero from "@/app/components/hero/PageHero";
import Container from "../../components/Container";
import SolutionsCard from "../../components/solutions/SolutionsCard";
import Section from "@/app/components/Section";

const Solutions = [
{
Expand All @@ -15,6 +16,9 @@ const SolutionsPage = () => {
return (
<div className="pb-10 w-full h-full">
<PageHero title="Manufacturing" description="Streamline your processes with AI" />
<div className="flex flex-col items-center justify-center py-20">
<Section title="Boost your manufacturing output 10x" paragraphs={["Leverage CambioML to maximize your uptime and quickly resolve downtime issues."]} center />
</div>
<Container>
<div className="pt-10 flex items-center justify-center">
<div className="max-w-[1200px] w-full h-full">
Expand Down

0 comments on commit 0029769

Please sign in to comment.