Skip to content

Commit

Permalink
AI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyhb committed Oct 24, 2023
1 parent a154029 commit 552936b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pages/ai.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import PageContainer from "src/shared/layout/PageContainer";
import CopyBtn from "../shared/Home/CopyBtn";
import { ChevronRightIcon } from "@heroicons/react/20/solid";
import CodeWindow from "src/shared/CodeWindow";
import Footer from "src/shared/Footer";

export const getStaticProps: GetStaticProps = async () => {
return {
Expand Down Expand Up @@ -157,6 +158,13 @@ export default function AI() {
</Container>

<DevelopmentCopy />

<br />
<br />
<br />
<br />

<Footer />
</PageContainer>
);
}
Expand All @@ -178,7 +186,7 @@ const AIHero = () => (
text-transparent
"
>
Build powerful AI workflows in code.
Build powerful <span className="font-extrabold hero-text-shadow">AI workflows</span> in code.
</h1>

<p className="text-lg text-slate-100 leading-8 w-1/2 text-center">
Expand Down Expand Up @@ -408,6 +416,7 @@ const DevelopmentCopy = () => {
</Link>
</div>
</Container>

);
};

Expand Down
4 changes: 4 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -780,3 +780,7 @@ ul.check li {
}
}


.hero-text-shadow {
text-shadow: 0 5px 30px rgba(224,198,210,0.2);
}

0 comments on commit 552936b

Please sign in to comment.