Skip to content

Commit

Permalink
update about page - removing yarn compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kineticsquid committed Jan 20, 2025
1 parent 27a61f4 commit 48b394b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ If you want to refute a previously granted ownership, please comment on the corr
Install dependencies, build assets and start a dev server:

```bash
cd website
yarn --cwd website
yarn --cwd website build
yarn --cwd website start:dev
Expand Down
11 changes: 2 additions & 9 deletions website/src/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
********************************************************************************/

import * as React from 'react';
import { Link, Typography, Container, List, ListItem, ListItemText } from '@mui/material';
import { Link, Typography, Container } from '@mui/material';
import { styled, Theme } from '@mui/material/styles';

const Heading = styled(Typography)(({ theme }: { theme: Theme }) => ({
Expand All @@ -20,13 +20,6 @@ const Paragraph = styled(Typography)(({ theme }: { theme: Theme }) => ({
marginTop: theme.spacing(2)
}));

const RepositoryList = styled('ul')(({ theme }: { theme: Theme }) => ({
fontSize: theme.typography.body1.fontSize,
fontFamily: theme.typography.body1.fontFamily,
fontWeight: theme.typography.body1.fontWeight,
lineHeight: theme.typography.body1.lineHeight
}));

const About = () => {
return <Container maxWidth='md'>
<Heading variant='h4'>About This Service</Heading>
Expand All @@ -37,7 +30,7 @@ const About = () => {
more information.
</Paragraph>
<Paragraph variant='body1'>
This service is operated by the <Link color='secondary' href='https://www.eclipse.org/'>Eclipse Foundation</Link>
This service is operated by the <Link color='secondary' href='https://www.eclipse.org/'>Eclipse Foundation </Link>
under the responsibility of the Open VSX Working Group. The Open VSX Working Group ensures the continued sustainability,
integrity, evolution and adoption of the Open VSX Registry. It provides governance, guidance, and funding for the
communities that support its implementation, deployment and maintenance. If you're interested in joining the working group,
Expand Down

0 comments on commit 48b394b

Please sign in to comment.