Skip to content

Commit

Permalink
bug(docs): fixing landing page (#1002)
Browse files Browse the repository at this point in the history
Co-authored-by: David Boyne <[email protected]>
  • Loading branch information
boyney123 and David Boyne authored Sep 4, 2024
1 parent 090ced9 commit 1848f18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const tabs = [
{
label: 'Serverless workloads',
metastring: 'playground',
left: () => <div className='flex flex-col justify-between h-full text-black dark:text-white'>
left: () => <div className='flex flex-col justify-between h-full text-black dark:text-gray-300'>
<div>
<p className='text-lg'>Develop distributed serverless applications in the cloud. </p>
<ul>
Expand Down Expand Up @@ -55,7 +55,7 @@ api.get("/employees", inflight (req) => {
{
label: 'Extensible',
metastring: 'playground',
left: () => <div className='flex flex-col justify-between h-full'>
left: () => <div className='flex flex-col justify-between h-full text-black dark:text-gray-300'>
<div>
<p className='text-lg'>Define your own standards, best practices and abstractions. </p>
<p className='text-lg'>Wing offers a programming model that lets developers create custom resources, <a className='dark:text-wing text-teal-700' href="/docs/winglibs/what-are-winglibs">libraries</a>, and <a className="dark:text-wing text-teal-700" href="/docs/platforms/platforms#creating-a-custom-platform">platforms</a>. </p>
Expand Down Expand Up @@ -103,7 +103,7 @@ let bucketBased: IKVStore = new BucketBasedKeyValueStore();`
// label: 'Preflight/Inflight',
label: 'Compile/runtime APIs',
metastring: 'playground',
left: () => <div className='flex flex-col justify-between h-full'>
left: () => <div className='flex flex-col justify-between h-full text-black dark:text-gray-300'>
<div>
<p className='text-lg'>Wing differentiates between code that executes during compilation and code that executes after the application has been deployed.</p>
<ul>
Expand Down Expand Up @@ -145,7 +145,7 @@ new cloud.Function(checkEndpoint);
{
label: 'Local testing',
metastring: 'playground',
left: () => <div className='flex flex-col justify-between h-full'>
left: () => <div className='flex flex-col justify-between h-full text-black dark:text-gray-300'>
<div>
<p className='text-lg'>Build cloud applications with confidence.</p>
<ul>
Expand Down

0 comments on commit 1848f18

Please sign in to comment.