File tree 8 files changed +17
-19
lines changed
8 files changed +17
-19
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Gallery from "@/components/gallery/Gallery";
3
3
import Image from "next/image" ;
4
4
import pinkFlower from "@/public/gallery/pinkFlower.webp" ;
5
5
import blueFlower from "@/public/gallery/blueFlower.webp" ;
6
- import CarouselGallery from "@/components/gallery/CaroGallery " ;
6
+ import CarouselGallery from "@/components/gallery/CarouselGallery " ;
7
7
8
8
const Page = ( ) => {
9
9
return (
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import gradCap from "@/public/about/gradCap.webp";
6
6
7
7
const FourPillars = ( ) => {
8
8
return (
9
- < div >
9
+ < >
10
10
< div className = "mt-10 flex flex-col" >
11
11
< p className = "ml-[7%] mr-[6%] text-right text-5xl font-semibold text-csa-red-100" >
12
12
Four Pillars
@@ -53,11 +53,11 @@ const FourPillars = () => {
53
53
< Image
54
54
src = { gradCap }
55
55
alt = "gradCap"
56
- className = "absolute w-[42vw] translate-x-[40%] translate-y-[-12%] sm:translate-x-[40%] sm:translate-y-[- 9%] md:w-[28vw] md:translate-x-[60 %] md:translate-y-[-9%] lg:w-[18vw] lg:translate- x-[120 %]"
56
+ className = "absolute translate-x-[40%] translate-y-[-9%] md:w-[70 %] md:translate-x-[40 %]"
57
57
/>
58
58
</ div >
59
59
</ div >
60
- </ div >
60
+ </ >
61
61
) ;
62
62
} ;
63
63
Original file line number Diff line number Diff line change 1
1
const WhoWeAre = ( ) => {
2
2
return (
3
- < div >
4
- < div >
5
- < p className = "ml-[6%] text-left text-5xl font-medium text-csa-red-100" >
6
- Who we are
7
- </ p >
8
- < div className = "ml-[7%] mr-auto h-2 w-[9%] bg-csa-tan-300" />
9
- </ div >
3
+ < >
4
+ < p className = "ml-[6%] text-left text-5xl font-medium text-csa-red-100" >
5
+ Who we are
6
+ </ p >
7
+ < div className = "ml-[7%] mr-auto h-2 w-[9%] bg-csa-tan-300" />
10
8
< div className = "ml-[4%] mr-[4%] flex justify-center" >
11
- < p className = "font-lora mt-8 w-11/12 text-left text-xl text-csa-gray-100 md:text-4xl " >
9
+ < p className = "font-lora mt-8 w-11/12 text-left text-xl text-csa-gray-100 md:text-3xl " >
12
10
The Chinese Student Association (CSA) at UC Riverside is a social,
13
11
cultural, and service orientated organization that strives to promote
14
12
the Chinese American culture throughout the UCR and Riverside
@@ -20,7 +18,7 @@ const WhoWeAre = () => {
20
18
experience and beyond!
21
19
</ p >
22
20
</ div >
23
- </ div >
21
+ </ >
24
22
) ;
25
23
} ;
26
24
Original file line number Diff line number Diff line change 1
1
import { GoogleEventProps } from "@/components/events/CalendarCall" ;
2
2
import { useState , useEffect } from "react" ;
3
- import CalendarEventPopover from "./CalendarEventPopover " ;
3
+ import CalendarEventPopover from "./EventPopover " ;
4
4
import {
5
5
Popover ,
6
6
PopoverContent ,
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ const CarouselGallery = () => {
10
10
< Image
11
11
src = { rabbit }
12
12
alt = "rabbit"
13
- className = "absolute bottom-[-13%] left-[2%] z-40 h-[50%] w-[30%] md:left-[12%]"
13
+ className = "absolute bottom-[-13%] left-[2%] z-40 h-1/2 w-[30%] md:left-[12%]"
14
14
/>
15
15
< Image
16
16
src = { bamboo }
17
17
alt = "bamboo"
18
18
className = "absolute bottom-[13%] left-[54%] z-40 h-[87%] w-[40%] md:left-[46.5%]"
19
19
/>
20
- < div className = "top-50 absolute -left-2 z-20 hidden h-full w-[20%] bg-csa-tan-100 md:flex" />
20
+ < div className = "top-50 absolute -left-2 z-20 hidden h-full w-1/5 bg-csa-tan-100 md:flex" />
21
21
< CarouselCSA photos = { carouselGallery } />
22
- < div className = "top-50 absolute z-20 hidden h-full w-[20%] bg-csa-tan-100 md:flex" />
22
+ < div className = "top-50 absolute z-20 hidden h-full w-1/5 bg-csa-tan-100 md:flex" />
23
23
</ div >
24
24
) ;
25
25
} ;
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import { cn } from "@/lib/utils";
7
7
import { buttonVariants } from "@/components/ui/button" ;
8
8
import { useState } from "react" ;
9
9
import { GoogleEventProps } from "@/components/events/CalendarCall" ;
10
- import CalendarTop from "@/components/events/CalendarTop " ;
11
- import CalendarDay from "@/components/events/CalendarDay " ;
10
+ import CalendarTop from "@/components/events/Top " ;
11
+ import CalendarDay from "@/components/events/Day " ;
12
12
13
13
export type CalendarProps = React . ComponentProps < typeof DayPicker > & {
14
14
events : GoogleEventProps [ ] ;
You can’t perform that action at this time.
0 commit comments