Skip to content

Commit

Permalink
Merge pull request #4 from acm-ucr/dev
Browse files Browse the repository at this point in the history
update main
  • Loading branch information
stanleylew5 authored Dec 21, 2024
2 parents 4342066 + 5c842f6 commit ac695f2
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 60 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ACM UCR Website Template
# CVDSA UofT Website

![Next.js](https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white)
![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)
![TypeScript](https://img.shields.io/badge/typescript-%23407ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)
![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white)
![Figma](https://img.shields.io/badge/figma-%23F24E1E.svg?style=for-the-badge&logo=figma&logoColor=white)
<br/>
Expand All @@ -15,7 +15,7 @@

## Node.js

ACM UCR Website Template runs on Node.js Version 20.10.0 and higher. Please ensure you have Node.js installed via the [official website](https://nodejs.org/en).
CVDSA UofT runs on Node.js Version 20.10.0 and higher. Please ensure you have Node.js installed via the [official website](https://nodejs.org/en).

## Next.js

Expand Down
103 changes: 49 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import { ReactQueryClientProvider } from "@/utils/react-query";
const inter = Inter({ subsets: ["latin"] });

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "UofT Cardiovascular Disease Student Association",
description:
"Cardiovascular Disease Student Association - Spreading awareness about heart disease since 1952",
};

type LayoutProps = {
Expand Down
13 changes: 12 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {},
extend: {
colors: {
cvdsa: {
"red-100": "#F2918F",
"red-200": "#F33734",
"blue-100": "#B5CBFD",
"orange-100": "#FF754A",
"purple-100": "#BC99FF",
"cornflower-100": "#B5CBFD",
},
},
},
},
plugins: [],
};

0 comments on commit ac695f2

Please sign in to comment.