Skip to content

Commit

Permalink
add flow graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
jojortz committed Jan 12, 2024
1 parent cfc47f0 commit cf11404
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 4 additions & 2 deletions app/components/about-us/TeamMember.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ interface TeamMemberProps {
image: string;
name: string;
title: string;
bio: string;
bio?: string;
url: string;
}

Expand All @@ -27,7 +27,9 @@ const TeamMember: React.FC<TeamMemberProps> = ({
<div>
<h2 className="text-2xl font-semibold">{name}</h2>
<h2 className="text-lg font-semibold">{title}</h2>
<p>{bio}</p>
{bio &&
<p>{bio}</p>
}
</div>
</div>
)
Expand Down
13 changes: 11 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Image from "next/image";
import ProductCard from "./components/ProductCard";
import Feature from "./components/feature/Feature";
import Hero from "./components/hero/Hero";
Expand All @@ -16,8 +17,16 @@ export default function Home() {
/>
<div className="h-full w-full py-10">
<Feature title="Transform any unstructured data to you private domain-expert AI" center>
<div className="flex flex-col items-center justify-center border-solid border-2 border-cambio-blue rounded-xl w-full h-[500px]">
TODO
<div className="flex flex-col items-center justify-center border-solid border-2 border-neutral-100 shadow-lg rounded-xl w-full h-[600px] relative">
<Image
src="/images/graphics/cambioml-flow-graphic.png"
// className="w-full h-full rounded-[inherit]"
// width={0}
// height={0}
fill
objectFit="contain"
alt="Cambioml Flow Graphic"
/>
</div>
</Feature>
<Feature title="Host your private LLMs anywhere in your control" description="" center>
Expand Down
3 changes: 0 additions & 3 deletions app/solutions/compliance/autorater/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
'use client';

import PageHero from "@/app/components/hero/PageHero";
import Container from "../../../components/Container";
import SolutionsCard from "../../../components/solutions/SolutionsCard";
import Section from "@/app/components/Section";
import Button from "@/app/components/Button";
import { useRouter } from "next/navigation";

const Solutions = [
Expand Down
Binary file added public/images/graphics/cambioml-flow-graphic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cf11404

Please sign in to comment.