Skip to content

Commit c695aba

Browse files
authored
💄 Remove docs button and replace with inline link (#13)
Signed-off-by: Eduard Itrich <[email protected]> on-behalf-of: @porscheofficial <[email protected]>
1 parent c33f44e commit c695aba

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

src/app/page.tsx

+14-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Section } from "../components/02_molecules/section/section";
1717
import { Projects, News, Memberships } from "../types/general";
1818
import { Membership } from "../components/03_organisms/membership/Membership";
1919
import { Heading } from "../components/01_atoms/Heading";
20-
import { LinkButton } from "../components/01_atoms/LinkButton";
20+
import { LinkPure } from "../components/01_atoms/LinkPure";
2121

2222
const Home: React.FC = () => {
2323
const projects: Projects = importProjects as Projects;
@@ -41,7 +41,6 @@ const Home: React.FC = () => {
4141
borders.
4242
</Text>
4343
</Textblock>
44-
4544
<FOSSMovement />
4645
</Section>
4746
<Section id="projects" grid={false}>
@@ -92,14 +91,21 @@ const Home: React.FC = () => {
9291
</Heading>
9392
<Textblock className={s.text}>
9493
<Text theme="dark" size="medium" align="center">
95-
Our growing documentation provides transparency on how Porsche is
96-
contributing to open source and the standards we are endorsing for
97-
new projects to foster healthy communities.
94+
Our{" "}
95+
<LinkPure
96+
theme="dark"
97+
underline
98+
icon="none"
99+
size="medium"
100+
href="/docs"
101+
>
102+
growing documentation
103+
</LinkPure>{" "}
104+
provides transparency on how Porsche is contributing to open source
105+
and the standards we are endorsing for new projects to foster
106+
healthy communities.
98107
</Text>
99108
</Textblock>
100-
<LinkButton href="/docs" theme="dark" className={s.cta}>
101-
Read documentation
102-
</LinkButton>
103109
</Section>
104110
<Section id="memberships" className={s.memberships}>
105111
{memberships.items.map((membership) => (

0 commit comments

Comments
 (0)