Skip to content

Commit

Permalink
Remove noise from PR
Browse files Browse the repository at this point in the history
  • Loading branch information
damianstasik committed Sep 7, 2023
1 parent b01da70 commit 488a477
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 42 deletions.
4 changes: 2 additions & 2 deletions src/components/Goals/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function Goal({ icon: Icon, title, description }) {
return (
<div className="bg-dark2 p-6">
<Icon className="w-12 mb-4" />
<h4 className="text-xl mb-2 text-white">{title}</h4>
<h4 className="text-xl mb-2">{title}</h4>
<p className="text-[#818995]">{description}</p>
</div>
);
Expand All @@ -18,7 +18,7 @@ function Goal({ icon: Icon, title, description }) {
export default function Goals() {
return (
<section className="py-6 md:py-12 mx-auto container">
<h3 className="text-center text-3xl md:text-5xl font-bold mb-6 md:mb-12 text-white">
<h3 className="text-center text-3xl md:text-5xl font-bold mb-6 md:mb-12">
Our Goals
</h3>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function Hero() {
return (
<header className="flex flex-col items-center py-10 md:py-20 px-6 md:px-16 mx-auto">
<PatternBg />
<h1 className="text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold leading-normal text-white lg:leading-normal tracking-wider sm:max-w-2xl md:max-w-3xl lg:max-w-4xl text-center">
<h1 className="text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold leading-normal lg:leading-normal tracking-wider sm:max-w-2xl md:max-w-3xl lg:max-w-4xl text-center">
Ensure Terraform remains truly open-source. Always.
</h1>
<p className="my-6 text-xl sm:max-w-lg md:max-w-xl lg:max-w-2xl text-center text-[#9DA6B5]">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Supporters/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function Supporters() {
const list = supporters.filter((supporter) => logos[supporter.name]);

return (
<section className="py-12 mx-auto container items-center flex flex-col text-white">
<section className="py-12 mx-auto container items-center flex flex-col">
<h3 className="text-center text-3xl md:text-5xl font-bold mb-4 md:mb-7">
Supporters
</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type TextContentProps = {

export default function TextContent({ children, className }: TextContentProps) {
return (
<div className="bg-white flex-1 overflow-hidden">
<div className="bg-white flex-1">
<div
className={clsx(
"prose lg:prose-lg mx-auto prose-h3:text-2xl prose-h3:leading-snug md:prose-h3:text-5xl md:prose-h3:leading-normal prose-li:marker:text-inherit prose-a:text-gray-600 my-4 px-5 md:px-0 md:my-14 text-gray-600",
Expand Down
6 changes: 0 additions & 6 deletions src/theme/BlogArchivePage/index.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/theme/BlogLastPost/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function BlogLastPost({ item }) {
{item.content.metadata.formattedDate}
</p>
<Link to={item.content.metadata.permalink}>
<h3 className="leading-snug text-3xl font-bold my-2 line-clamp-5 text-white hover:underline">
<h3 className="leading-snug text-3xl font-bold my-2 line-clamp-5">
{item.content.metadata.title}
</h3>
</Link>
Expand Down
6 changes: 0 additions & 6 deletions src/theme/BlogPostItem/index.tsx

This file was deleted.

24 changes: 0 additions & 24 deletions src/theme/ColorModeToggle/index.tsx

This file was deleted.

0 comments on commit 488a477

Please sign in to comment.