Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update links in README #6

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ changes to ```main``` can be pulled from the Common Frontend Repository by runni
git pull upstream main
```

Please see [Styling and Theming](https://github.com/uc-cdis/gen3-frontend-framework/blob/develop/docs/Local%20Development/Styling%20and%20Theming.md) and [Local Development with Helm Charts](https://github.com/uc-cdis/gen3-frontend-framework/blob/develop/docs/Local%20Development/Using%20Helm%20Charts/Local%20Development%20with%20Helm%20Charts.md)
Please see [Styling and Theming](https://github.com/uc-cdis/gen3-frontend-framework/blob/develop/docs/Configuration/Styling%20and%20Theming.md) and [Local Development with Helm Charts](https://github.com/uc-cdis/gen3-frontend-framework/blob/develop/docs/Local%20Development/Using%20Helm%20Charts/Local%20Development%20with%20Helm%20Charts.md)
for more information on setting up and configuring the Gen3 Data Commons Application.
This documentation is currently less complete than we would like, but we will be adding to it as development progresses.

Expand Down
10 changes: 6 additions & 4 deletions src/pages/SamplePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ const SamplePage = ({ headerProps, footerProps }: NavPageLayoutProps) => {
key: 'gen3-sample-page',
}}
>
<div className="w-full m-10">
<div className="w-full m-10 bg-heal-light_purple">
<Center>
<Paper shadow="md" p="xl" withBorder>
<Text>This is a example custom page in Gen3</Text>
<Text>
<Paper classNames={{
root: "bg-heal-purple"
}} shadow="md" p="xl" withBorder >
<Text className="text-gen3-white">This is a example custom page in Gen3</Text>
<Text className="text-gen3-smoke">
You can add your own content here, and add a link to this page in
the navigation bar by editing the config file in navigation.json
</Text>
Expand Down
Loading