Skip to content

Commit

Permalink
Fixed copy and added quote.
Browse files Browse the repository at this point in the history
  • Loading branch information
vegetableman committed Jan 10, 2024
1 parent 4a3c9d4 commit 005836f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 21 deletions.
8 changes: 4 additions & 4 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import Navbar from "@/components/navbar";
import Image from "next/image";

const headlines = [
'Tetmon represented Singapore to Chongqing Tech Unicorn summit, and regularly speak at corporate innovation workshops',
'We partner with some of the world’s top technology firms',
'Tool of choice by top funds, financial institutions, government linked corporations, and more'
'Tetmon represented Singapore to Chongqing Tech Unicorn summit, and regularly speak at corporate innovation workshops.',
'We partner with some of the world’s top technology firms.',
'Tool of choice by top funds, financial institutions, government linked corporations, and more.'
];

const members = [
{
name: 'Christopher Forno',
title: 'Co-founder',
description: `
For two decades, Chris has built and led global software engineering teams to execute challenging projects ranging from very large distributed systems to computer vision. He has worked in most mainstream programming languages and has extensive experience from DevOps and Cybersecurity to front-end.
For two decades, Chris has built and led global software engineering teams to execute challenging projects ranging from very large distributed systems to computer vision. He has worked in most mainstream programming languages and has extensive experience from devOps and cybersecurity to front-end.
<br/> <br/>
Previous employers and clients have included top Californian tech companies, the private equity fund Yucaipa Companies, and more recently in Asia, Global Fashion Group and Lazada. Chris has written popular articles on a number of themes, his GitHub projects have 500 stars and 100 forks, and his YouTube programming tutorials have been viewed over half a million times.
`,
Expand Down
23 changes: 7 additions & 16 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,14 @@ const testimonials = [
width: 150
},
{
name: 'Michella',
name: 'Michelle',
company: 'SPDJ',
quote: 'CEOs used to have to ask so many layers of people for the data. The higher you go, the further you get away from data. But now, you can get data at finger tips.',
quote: 'CEO\'s used to have to ask so many layers of people for the data. The higher you go, the further you get away from data. But now, you can get data at your fingertips.',
file: '/companies/spd-empty.png',
bg: '#eeeeee'
},
{
name: 'A customers engineering staff',
name: 'A customer\'s engineering staff',
company: 'Oxquant',
quote: 'Can I resell your product?',
file: '/companies/oxquant-empty.png',
Expand Down Expand Up @@ -380,26 +380,17 @@ export default function Home() {
<p className='m-auto mb-10 max-w-2xl rounded-lg p-5 text-center text-xl font-medium tracking-tighter text-slate-500 md:text-2xl'>&quot;No Tech Department? No problem. <span className='text-edgeset underline'>Edgeset</span> will handle the integration.&quot;</p>
{/* <p className='mb-14 text-center text-base font-semibold text-slate-500 md:text-lg'>- Yinghan Hu, Founder</p> */}
<p className='mb-8 text-center text-lg font-medium tracking-tighter text-slate-500 md:mb-14 md:text-2xl'>
Here&apos;s what our <span className='text-edgeset underline'>happy</span> users <i>say</i>:
Here&apos;s what our <span className='text-edgeset underline'>happy</span> users <i>say</i>
</p>
<div className='grid grid-cols-1 gap-14 sm:grid-cols-2 lg:grid-cols-3 lg:gap-12'>
{
testimonials.map((item) => (
<div key={item.name} className='m-auto flex min-w-[300px] max-w-[400px] flex-col rounded-md border border-slate-200 bg-white'>
{/* <div className='flex h-60 w-full items-center justify-center' style={{ backgroundColor: item.bg }}>
<Image src={item.file} width={item.width ?? 100} height={100} alt={item.company} />
</div> */}
<div key={item.name} className='m-auto flex w-full max-w-[400px] flex-col rounded-md border border-slate-200 bg-white pt-4'>
<svg className='relative left-4' xmlns="http://www.w3.org/2000/svg" height="24" width="24" viewBox="0 0 448 512" fill="#2885a4"><path d="M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z"/></svg>
<div className='flex flex-auto flex-col px-4'>
<q className='my-4 text-gray-700'>{item.quote}</q>
<p className='my-4 text-gray-700'>{item.quote}</p>
<div className='flex items-center justify-end pb-5'>
{/* <div className='flex flex-col'> */}
<b className='max-w-[200px] text-center text-base font-semibold text-edgeset'>{item.name}</b>
{/* <b className='text-sm font-semibold text-edgeset lg:text-base'>MD, {item.company}</b> */}
{/* </div> */}
{/* <button className='flex items-center rounded-3xl border border-edgeset bg-white px-3 py-2 text-sm font-medium text-edgeset hover:border-black hover:bg-edgeset hover:text-white'>
<span className='pr-1 font-semibold'>Case Study</span>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>
</button> */}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const Footer = () => (
<svg role="img" width="120" height="100" aria-label="Tetmon logo" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg"><g fill="rgb(55, 65, 81)"><path d="m23 0-6.64 3.91 9.31 5.48-15.47 9.1v4.11l6 3.46v-3.7l16.1-9.43 6.57 3.95-.08 14.63 6.16-3.71.12-14.74zm22 39.57v-7.67l-9.47 5.18.1-17.95-3.47-2.13-6 3.37 3.17 1.9-.15 18.65-6.76 3.61-12.54-7.53v7.19l12.6 7.67zm-45-.79 6.69 3.76.08-10.81 15.63 8.84 3.56-2v-6.97l-3.21 1.86-16.21-9.22.13-7.66 12.7-7.25-6.29-3.48-12.83 7.27z" fillRule="evenodd"></path><path d="m75 19.45v17.37h-4.76v-17.37h-6.64v-4.45h18.07v4.43z"></path><path d="m85.49 36.82v-21.82h16.41v4.27h-11.68v4.42h10.28v4.31h-10.28v4.58h11.84v4.26z"></path><path d="m116.37 19.45v17.37h-4.79v-17.37h-6.64v-4.45h18.06v4.43z"></path><path d="m143.9 36.82v-14.23l-6.14 9.31h-.12l-6.08-9.22v14.14h-4.73v-21.82h5.17l5.73 9.22 5.73-9.22h5.17v21.8z"></path><path d="m175.34 30.3a11.13 11.13 0 0 1 -6.09 6 12.57 12.57 0 0 1 -9.29 0 11.4 11.4 0 0 1 -3.66-2.4 10.61 10.61 0 0 1 -2.4-3.55 11.2 11.2 0 0 1 -.9-4.35v-.07a11 11 0 0 1 .87-4.37 11.32 11.32 0 0 1 2.46-3.56 11.2 11.2 0 0 1 3.67-2.46 11.91 11.91 0 0 1 4.66-.89 11.77 11.77 0 0 1 8.3 3.28 10.76 10.76 0 0 1 2.4 3.56 11.17 11.17 0 0 1 .86 4.37v.06a11.05 11.05 0 0 1 -.88 4.38zm-4.14-4.38a7.27 7.27 0 0 0 -.48-2.64 6.56 6.56 0 0 0 -1.37-2.18 6.44 6.44 0 0 0 -2.11-1.48 6.24 6.24 0 0 0 -2.64-.55 6.59 6.59 0 0 0 -2.67.53 6.14 6.14 0 0 0 -2.05 1.46 7 7 0 0 0 -1.34 2.17 7.18 7.18 0 0 0 -.48 2.63v.06a7.29 7.29 0 0 0 .48 2.65 6.57 6.57 0 0 0 3.46 3.66 6.39 6.39 0 0 0 2.66.55 6.64 6.64 0 0 0 2.65-.53 6 6 0 0 0 2.07-1.47 6.83 6.83 0 0 0 1.34-2.16 7.18 7.18 0 0 0 .48-2.62z"></path><path d="m195.92 36.82-10.56-13.82v13.82h-4.73v-21.82h4.42l10.22 13.43v-13.43h4.73v21.8z"></path></g></svg>
<ul className='mb-12 grid grid-cols-2 gap-4'>
<li className='text-base font-normal text-gray-800'><a href="/get-demo">Request a Demo</a></li>
<li className='text-base font-normal text-gray-800'><a className='hover:underline' href="/case-studies">Case Studies</a></li>
{/* <li className='text-base font-normal text-gray-800'><a className='hover:underline' href="/case-studies">Case Studies</a></li> */}
{/* <li className='text-base font-normal text-gray-800'><a href="/faq" className='hover:underline'>FAQ</a></li> */}
<li className='text-base font-normal text-gray-800'><a href="/about" className='hover:underline'>About</a></li>
</ul>
Expand Down

0 comments on commit 005836f

Please sign in to comment.