diff --git a/src/Components/Footer/Footer.module.scss b/src/Components/Footer/Footer.module.scss index e277abb..5b31c81 100644 --- a/src/Components/Footer/Footer.module.scss +++ b/src/Components/Footer/Footer.module.scss @@ -17,7 +17,9 @@ .container { background-image: linear-gradient( to bottom, - rgba(0, 240, 255, 0) 50%, + #00f0ff00 42%, + #00f0ff4e 67%, + #00f0ff70 77%, #00f0ff 100% ) !important; width: 100%; diff --git a/src/Components/JudgeCard/JudgeCard.jsx b/src/Components/JudgeCard/JudgeCard.jsx new file mode 100644 index 0000000..b7ee575 --- /dev/null +++ b/src/Components/JudgeCard/JudgeCard.jsx @@ -0,0 +1,90 @@ +import styles from "./JudgeCard.module.scss"; + +const Card = ({ image, name, role, data }) => { + return ( +
+
+
+ {name} +

{name}

+

{role}

+
+
+
+
+
    + {data.map((info) => ( +
  • {info}
  • + ))} +
+
+
+
+ ); +}; + +const JudgeCard = () => { + const SWJudge = { + id: 1, + image: + "https://res.cloudinary.com/dnuhxx8aa/image/upload/v1705826342/utkarsh_ekhwgs.webp", + name: "Utkarsh Gupta", + role: "SDE @Graviton", + data: "AIR 1 @Google Kickstart; Ex AIR 1 @Codeforces; Grandmaster @Codeforces; 7 Star on CodeChef; ICPC '21 World Finalist", + }; + const UIUXJudges = [ + { + id: 1, + image: + "https://res.cloudinary.com/dnuhxx8aa/image/upload/v1705826342/utkarsh_ekhwgs.webp", + name: "Utkarsh Gupta", + role: "SDE @Graviton", + data: "AIR 1 @Google Kickstart; Ex AIR 1 @Codeforces; Grandmaster @Codeforces; 7 Star on CodeChef; ICPC '21 World Finalist", + }, + { + id: 2, + image: + "https://res.cloudinary.com/dnuhxx8aa/image/upload/v1705826158/harsh_mu4xlo.webp", + name: "Harsh Mishra", + role: "Open Source Engineer @LocalStack", + data: "Google Summer of Code '21; Google Season of Docs '21; AWS Community Builder; Open Source Contributor @moja global", + }, + ]; + return ( +
+

software tracU judge

+
+
+ +
+

+ ui/ux judges +

+
+
+ {UIUXJudges.map((judge) => { + const dataList = judge.data.split(";"); + return ( + + ); + })} +
+
+ ); +}; + +export default JudgeCard; diff --git a/src/Components/JudgeCard/JudgeCard.module.scss b/src/Components/JudgeCard/JudgeCard.module.scss new file mode 100644 index 0000000..2a84d01 --- /dev/null +++ b/src/Components/JudgeCard/JudgeCard.module.scss @@ -0,0 +1,162 @@ +.section { + text-align: center; + color: white; + padding-top: 2rem; +} + +.gridContainer { + display: grid; + grid-template-columns: 1fr 1fr; + padding: 1rem 2rem; + gap: 1.5rem; + justify-items: center; +} + +.heading { + font-family: "StarJedi"; + color: #f2c300; + font-size: 3rem; + margin-bottom: 3rem; +} + +.speaker_image { + width: 100%; + height: 100%; + border-radius: 1rem; +} + +.data { + font-size: 1rem; + display: flex; + flex-direction: column; + gap: 1rem; + padding: 2.5rem; +} + +.name { + font-size: 1.5rem; +} + +.role { + font-size: 1rem; +} + +.flip_card { + border-radius: 1rem; + transform-style: preserve-3d; + perspective: 1000px; + width: 50%; +} + +@media screen and (max-width: 600px) { + .flip_card { + width: 100%; + } + + .name { + font-size: 1rem; + } + + .role { + font-size: 0.8rem; + height: 0rem; + } + + .data { + font-size: 0.7rem; + } + + .heading { + margin-bottom: 1rem; + } +} + +@media screen and (max-width: 850px) and (min-width: 601px) { + .flip_card { + width: 50%; + } + + .name { + font-size: 1rem; + } + + .role { + font-size: 0.8rem; + height: 0rem; + } + + .data { + font-size: 0.7rem; + } + + .heading { + margin-bottom: 1rem; + } +} + +.flip_card_front, +.flip_card_back { + background-size: cover; + background-position: center; + transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); + transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); + backface-visibility: hidden; + width: 100%; + height: 425px; + border-radius: 0.6rem; + background-color: black; + color: #fff; + font-size: 1.5rem; +} + +.flip_card_front::after, +.flip_card_back::after { + position: absolute; + top: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + content: ""; + display: block; + opacity: 1; + backface-visibility: hidden; + border-radius: 0.6rem; +} + +.flip_card_inner { + transform: translateY(-50%) translateZ(60px) scale(0.94); + position: absolute; + top: 50%; + left: 0; + width: 100%; + padding: 0rem; + box-sizing: border-box; + outline: 1px solid transparent; + background-color: black; + perspective: inherit; + z-index: 2; +} + +.flip_card_back { + transform: rotateY(180deg); + transform-style: preserve-3d; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: black; + border: 2px solid white; +} + +.flip_card_front, +.flip_card:hover .flip_card_back { + transform: rotateY(0deg); + transform-style: preserve-3d; +} + +.flip_card:hover .flip_card_front { + transform: rotateY(-180deg); + transform-style: preserve-3d; +} diff --git a/src/Components/Navbar/Navbar.jsx b/src/Components/Navbar/Navbar.jsx index 3b336a8..7eb01bf 100644 --- a/src/Components/Navbar/Navbar.jsx +++ b/src/Components/Navbar/Navbar.jsx @@ -13,7 +13,7 @@ const Navbar = () => { if (location.hash) { const id = location.hash.split("#")[1]; const element = document.getElementById(id); - const headerOffset = 100; + const headerOffset = 200; const bodyRect = document.body.getBoundingClientRect().top; if (element) { const elementRect = element.getBoundingClientRect().top; diff --git a/src/Components/Teams/Card/Card.module.scss b/src/Components/Teams/Card/Card.module.scss index 86f8169..d62c80c 100644 --- a/src/Components/Teams/Card/Card.module.scss +++ b/src/Components/Teams/Card/Card.module.scss @@ -4,6 +4,7 @@ .cardBox { margin: auto; + margin-bottom: 2rem; width: 18rem; height: 23rem; border: white; diff --git a/src/Components/index.js b/src/Components/index.js index 58dfe60..ae7f65d 100644 --- a/src/Components/index.js +++ b/src/Components/index.js @@ -8,6 +8,7 @@ import Hero from "./Hero/Hero"; import Event from "./Event/Event"; import Testimonial from "./Testimonial/Testimonial"; import Carousel from "./Carausel/Carausel"; +import JudgeCard from "./JudgeCard/JudgeCard"; export { Navbar, @@ -21,4 +22,5 @@ export { Event, Testimonial, Carousel, + JudgeCard, }; diff --git a/src/Pages/CFStandings/CfStandings.jsx b/src/Pages/CFStandings/CfStandings.jsx index dbfe345..5564f0a 100644 --- a/src/Pages/CFStandings/CfStandings.jsx +++ b/src/Pages/CFStandings/CfStandings.jsx @@ -7,7 +7,7 @@ import styles from "./CfStandings.module.scss"; const queryClient = new QueryClient(); const CfStandings = () => { - const [comingsoon] = useState(false); + const [comingsoon] = useState(true); return (
diff --git a/src/Pages/Home/Home.jsx b/src/Pages/Home/Home.jsx index 888747b..1c199e8 100644 --- a/src/Pages/Home/Home.jsx +++ b/src/Pages/Home/Home.jsx @@ -9,6 +9,7 @@ import { Sponsor, Hero, Testimonial, + JudgeCard, } from "../../Components/index"; const Home = () => { @@ -27,6 +28,7 @@ const Home = () => {
+ diff --git a/src/Pages/Team/Team.module.scss b/src/Pages/Team/Team.module.scss index b9265c8..8f963ac 100644 --- a/src/Pages/Team/Team.module.scss +++ b/src/Pages/Team/Team.module.scss @@ -2,7 +2,7 @@ $fontcolor: #ffffff; @font-face { font-family: "StarJedi"; - src: url("/public/fonts/Starjedi.ttf") format("truetype"); + src: url("/fonts/Starjedi.ttf") format("truetype"); font-weight: normal; font-style: normal; } @@ -114,6 +114,7 @@ $fontcolor: #ffffff; align-items: center; justify-content: center; padding-top: 2rem; + text-align: center; .Events { margin: 0 3rem; @@ -127,6 +128,10 @@ $fontcolor: #ffffff; } .content { font-family: "Courier New", Courier, monospace; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; .heading { margin-bottom: 8rem; color: #f2c300; diff --git a/src/Pages/Team/TeamSection.jsx b/src/Pages/Team/TeamSection.jsx index 3d00653..83fccb8 100644 --- a/src/Pages/Team/TeamSection.jsx +++ b/src/Pages/Team/TeamSection.jsx @@ -13,6 +13,7 @@ const DeskTeam = ({ techLead, tech, organisers, + volunteers, }) => { return (
@@ -45,12 +46,12 @@ const DeskTeam = ({
{organisers.map(MemberDetails)}
- {/*
+
volunteers
{" "}
{volunteers.map(MemberDetails)}
-
*/} +
); }; @@ -63,6 +64,7 @@ const MobTeam = ({ techLead, tech, organisers, + volunteers, }) => { return (
@@ -102,14 +104,14 @@ const MobTeam = ({ {organisers.map(MemberDetails)}
- {/*
+

volunteers

{volunteers.map(MemberDetails)}
-
*/} +
); }; diff --git a/src/assets/team.json b/src/assets/team.json index e7701b2..488fefa 100644 --- a/src/assets/team.json +++ b/src/assets/team.json @@ -2,7 +2,7 @@ { "id": 31, "name": "Dr. Prashanth Jain", - "designation": "Faculty Member", + "designation": "Faculty-in-Charge", "img": "https://res.cloudinary.com/dhry5xscm/image/upload/v1729517346/nits-hacks-7.0/prashanthjain_frgp1o.jpg", "git": "", "role": "Faculty", @@ -13,7 +13,7 @@ { "id": 32, "name": "Dr. Wasim Arif", - "designation": "Faculty Member", + "designation": "Coordinator, IIC", "img": "https://res.cloudinary.com/dhry5xscm/image/upload/v1729517345/nits-hacks-7.0/wasimarif_xgvmxs.jpg", "git": "", "role": "Faculty", @@ -24,7 +24,7 @@ { "id": 33, "name": "Dr. Ashish B. Deoghare", - "designation": "Faculty Member", + "designation": "Convener, IIC", "img": "https://res.cloudinary.com/dhry5xscm/image/upload/v1729517375/nits-hacks-7.0/abdeoghare_znphbt.jpg", "git": "", "role": "Faculty", @@ -63,6 +63,16 @@ "git": "https://home.byt3h3ad.workers.dev/github", "portfolio": "https://home.byt3h3ad.workers.dev/website" }, + { + "id": 31, + "img": "https://res.cloudinary.com/dmezugavw/image/upload/v1729590206/pragya_zg7bor.jpg", + "name": "Pragya Annesha Baruah", + "designation": "Coordinator", + "role": "Coordinator", + "linkedin": "https://www.linkedin.com/in/pragya-annesha-baruah-34a043229", + "fb": "https://www.facebook.com/profile.php?id=100075204826742", + "git": "https://github.com/Prag03" + }, { "id": 34, "img": "https://res.cloudinary.com/dhry5xscm/image/upload/v1729516704/nits-hacks-7.0/BFC8C0E3-662C-43A9-9F0D-CE780B64484C_1_102_a_-_Jaydeep_Das_u8gjup.jpg", @@ -348,5 +358,246 @@ "role": "Organisers", "linkedin": "https://www.linkedin.com/in/jagatjyotideb/", "fb": "https://www.facebook.com/profile.php?id=100084536361943" + }, + { + "role": "volunteer", + "name": "Abhishekh Kumar Mishra ", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606551/qe7o6dhdmfxierza5uyi.webp", + "linkedin": "https://www.linkedin.com/in/abhishekh-kumar-mishra-81a655291/", + "cf": "https://codeforces.com/profile/abhi_mishra", + "fb": "https://www.facebook.com/profile.php?id=100055101542369", + "id": 40 + }, + { + "role": "volunteer", + "name": "Akshita Shahi", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606547/lebyyqsr29nh3itm1mwz.webp", + "linkedin": "https://www.linkedin.com/in/akshita-shahi-640787258/", + "git": "https://github.com/akshitashahi", + "fb": "https://www.facebook.com/profile.php?id=61551230495663", + "id": 41 + }, + { + "role": "volunteer", + "name": "Anmol Swarup Sahoo", + "designation": "Editorial", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606635/oq3jactnpyzklkekimtd.webp", + "linkedin": "https://www.linkedin.com/in/anmol77/", + "git": "https://github.com/Newt-Shadow", + "fb": "https://www.facebook.com/profile.php?id=61550888831171", + "id": 42 + }, + { + "role": "volunteer", + "name": "Balla Pranava Chaitanya", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606645/ki9tpopvjexehosax2bq.webp", + "linkedin": "https://www.linkedin.com/in/balla-pranava-chaitanya-59b84628a/", + "cf": "https://codeforces.com/profile/pranavachaitanyaballa", + "fb": "https://www.facebook.com/profile.php?id=61550684457505", + "id": 43 + }, + { + "role": "volunteer", + "name": "Deepanshu Sharma", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606611/vovxgyaokgrasupxmf3k.webp", + "linkedin": "https://www.linkedin.com/in/deepanshu-sharma-b3a46828a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app", + "git": "https://github.com/deepanshu089", + "fb": "https://www.facebook.com/profile.php?id=61566729197707&mibextid=ZbWKwL", + "id": 44 + }, + { + "role": "volunteer", + "name": "Gauri Jain ", + "designation": "Design", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606557/xgqrdccdzhmu6ezysdvs.webp", + "linkedin": "https://www.linkedin.com/in/gauri-jain-545740312?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app", + "cf": "https://codeforces.com/profile/learnlily01", + "fb": "https://www.facebook.com/profile.php?id=61551755972496&mibextid=ZbWKwL", + "id": 45 + }, + { + "role": "volunteer", + "name": "Hirak Rajbonshi", + "designation": "Outreach", + "cf": "https://codeforces.com/profile/karock", + "linkedin": "https://www.linkedin.com/in/hirak-rajbonshi-baa6a628a/", + "fb": "https://www.facebook.com/hirak.rajbonshi.7?mibextid=ZbWKwL", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1726288668/hhwia4wcqmraaypee6y8.webp", + "id": 46 + }, + { + "role": "volunteer", + "name": "Jey Nang Gogoi", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606650/bgnvxibjizfyawogd9a2.webp", + "linkedin": "https://www.linkedin.com/in/jey-nang-gogoi-7830a92b1", + "git": "https://github.com/Jeynang2024", + "fb": "https://www.facebook.com/profile.php?id=61551416120715&mibextid=ZbWKwL", + "id": 47 + }, + { + "role": "volunteer", + "name": "Jitamanyu Phukan", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606605/lhxsmnwfnny3kmypwvu9.webp", + "linkedin": "https://www.linkedin.com/in/jitamanyu-phukan-562728280", + "git": "https://github.com/procoast", + "fb": "https://m.facebook.com/profile.php?id=100070630387563&name=xhp_nt__fb__action__open_user", + "id": 48 + }, + { + "role": "volunteer", + "name": "Khumanthem Radhapyari Devi ", + "designation": "Design", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606580/oiwhxgd7regbic2sonq5.webp", + "linkedin": "https://www.linkedin.com/in/radhapyari-khumanthem-15949928b/", + "cf": "https://codeforces.com/profile/turtle_", + "fb": "https://www.facebook.com/profile.php?id=61553120172360", + "id": 49 + }, + { + "role": "volunteer", + "name": "Krish Jha ", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606568/uyaqmhaufay5pbpjz1ho.webp", + "linkedin": "https://www.linkedin.com/in/krish-jha-5059202a9/", + "cf": "https://codeforces.com/profile/krishjha1121", + "fb": "https://www.facebook.com/krish.jha.33449/", + "id": 50 + }, + { + "role": "volunteer", + "name": "Mainak Das", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606574/kbpxya0rgjt4k6qxe2q6.webp", + "linkedin": "https://linkedin.com/in/mainakdasnits", + "git": "https://github.com/tech-hunter-mainak", + "fb": "https://facebook.com/mainak.nitS", + "id": 51 + }, + { + "role": "volunteer", + "name": "Manisha Saloi", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606600/ojh2zkhxvtvoksu8txka.webp", + "linkedin": "https://www.linkedin.com/in/manisha-saloi-aa564228a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app", + "git": "github.com/manisha999404", + "fb": "https://www.facebook.com/profile.php?id=61550675969308&mibextid=ZbWKwL", + "id": 52 + }, + { + "role": "volunteer", + "name": "Munmun bansal", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606541/bozrgzlh406dakuipwm0.webp", + "linkedin": "www.linkedin.com/in/ munmun-bansal-9158902b3", + "git": "https://github.com/munmunbansal", + "fb": "https://www.facebook.com/profile.php?id=61556245791014&mibextid=ZbWKwL", + "id": 53 + }, + { + "role": "volunteer", + "name": "Parishmita Banik ", + "designation": "Editorial", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606564/kghv04uahutjjzfeowqm.webp", + "linkedin": "https://www.linkedin.com/in/parishmita-banik-8b0235288/", + "cf": "https://codeforces.com/profile/parishmitabanik2005", + "fb": "https://www.facebook.com/share/hmbVRaiCSbHgMn8y/?mibextid=qi2Omg", + "id": 54 + }, + { + "role": "volunteer", + "name": "Parthiv Pratim Saikia", + "designation": "Editorial", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606628/j1lg9sbk8rhiz4dzjtin.webp", + "linkedin": "https://www.linkedin.com/in/parthiv-pratim-saikia-46b259288?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app", + "git": "https://github.com/parthivsaikia", + "fb": "https://www.facebook.com/profile.php?id=61556091682388", + "id": 55 + }, + { + "role": "volunteer", + "name": "Priyanshu Kashyap", + "designation": "Outreach", + "git": "https://github.com/7rikster", + "linkedin": "https://www.linkedin.com/in/priyanshu-kashyap-8196a928a/", + "fb": "https://www.facebook.com/profile.php?id=61550769088682", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1726288729/ameajhu1tfoaau5gzwcx.webp", + "id": 56 + }, + { + "role": "volunteer", + "name": "Saibalik Chakraborty", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606585/p18e08hqxxclb7xmr2yf.webp", + "linkedin": "https://www.linkedin.com/in/saibalik-chakraborty-802137284/", + "cf": "https://codeforces.com/profile/SuperNovaDs", + "fb": "https://www.facebook.com/profile.php?id=61553583980749", + "id": 57 + }, + { + "role": "volunteer", + "name": "Shrish Lahiri", + "designation": "Editorial", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606623/xhkuwjlslapuztzoma1i.webp", + "linkedin": "https://www.linkedin.com/in/shrish-lahiri-8b6915273?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app", + "git": "https://github.com/Shrish-Lahiri", + "fb": "https://www.facebook.com/profile.php?id=61550305484520&mibextid=LQQJ4d", + "id": 58 + }, + { + "role": "volunteer", + "name": "Sneha", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606641/c7bmgnmblx64yysoirqh.webp", + "linkedin": "https://www.linkedin.com/in/sneha-singh-82aa0330b", + "git": "https://github.com/Sneha4522", + "fb": "https://www.facebook.com/profile.php?id=100082051326109&mibextid=ZbWKwL", + "id": 59 + }, + { + "role": "volunteer", + "name": "Subhadeep Deb ", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606618/d4ufuvbosyc1p5x3jpso.webp", + "linkedin": "https://www.linkedin.com/in/subhadeep-deb-66a6b827a", + "git": "https://github.com/coderSubhadeepdeb", + "fb": "https://www.facebook.com/profile.php?id=100093466932501&mibextid=ZbWKwL", + "id": 60 + }, + { + "role": "volunteer", + "name": "Subrata Lodh", + "designation": "Outreach", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606594/wyztsxztm8nryecpkuxa.webp", + "linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav", + "git": "https://github.com/Subrata-20", + "fb": "https://www.facebook.com/profile.php?id=100088421967870&mibextid=ZbWKwL", + "id": 61 + }, + { + "role": "volunteer", + "name": "Upamanyu Jit Phukan", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606560/pjiby9wodgtqoimln4n6.webp", + "linkedin": "https://www.linkedin.com/in/upamanyu-jit-phukan-a98359291/?originalSubdomain=in", + "cf": "https://codeforces.com/profile/Upamanyu_Phukan", + "fb": "https://www.facebook.com/upamanyu.jitphukan/", + "id": 62 + }, + { + "role": "volunteer", + "name": "Vikrant Agarwala ", + "designation": "Marketing", + "img": "https://res.cloudinary.com/gdsc-photo/image/upload/v1729606571/mtu1qlvxkt6vjo3h1j5g.webp", + "linkedin": "https://www.linkedin.com/in/vikrant-agarwala?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app", + "cf": "https://codeforces.com/profile/vikrantag17", + "fb": "https://www.facebook.com/vikrant017?mibextid=ZbWKwL", + "id": 63 } ] + diff --git a/src/index.scss b/src/index.scss index 7cd523f..37e513b 100644 --- a/src/index.scss +++ b/src/index.scss @@ -14,11 +14,6 @@ src: url("/fonts/Death Star 400.ttf"); } -@font-face { - font-family: Starwars; - src: url("/public/fonts/Starjedi.ttf"); -} - :root { --gdsc-font-1: "Poppins", sans-serif;