Skip to content

Commit

Permalink
Merge pull request #1 from acm-ucr/stanleylew5/update
Browse files Browse the repository at this point in the history
Stanleylew5/update
  • Loading branch information
stanleylew5 authored Dec 23, 2024
2 parents 7b211a2 + a48f658 commit f2460b8
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 57 deletions.
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.

9 changes: 9 additions & 0 deletions public/home/clouds.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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: "UCR Chinese Student Association",
description:
"Social, cultural, and service orientated organization that strives to promote the Chinese American culture throughout the UCR and Riverside communities",
};

type LayoutProps = {
Expand Down
7 changes: 7 additions & 0 deletions src/components/Test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const Test = () => {
return <div></div>;
};

export default Test;
18 changes: 17 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@
module.exports = {
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {},
extend: {
colors: {
csa: {
"red-100": "#7C2413",
"red-200": "#842A35",
"green-100": "#6F77765",
"yellow-100": "#D0AD6B",
"yellow-200": "#E0C799",
"yellow-300": "#E9A545",
"tan-100": "#F9EDD7",
"tan-200": "#CBAD95",
"tan-300": "#AD9B85",
"gray-100": "#535353",
"gray-200": "#534C4A",
},
},
},
},
plugins: [],
};

0 comments on commit f2460b8

Please sign in to comment.