Skip to content

Commit

Permalink
Merge pull request #40 from TEDx-SJEC/footer-about
Browse files Browse the repository at this point in the history
update: satoshi font
  • Loading branch information
Vyshnav001 authored Oct 9, 2024
2 parents 1c88397 + 9eef54b commit 5faf3fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url("https://fonts.cdnfonts.com/css/satoshi");

@tailwind base;
@tailwind components;
@tailwind utilities;
Expand Down Expand Up @@ -87,8 +89,8 @@
}
}

.about{
background-color:rgb(255,255,255,0.3)
.about {
background-color: rgb(255, 255, 255, 0.3);
}
html.lenis,
html.lenis body {
Expand All @@ -109,4 +111,4 @@ html.lenis body {

.lenis.lenis-scrolling iframe {
pointer-events: none !important;
}
}
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<html lang="en" className="dark font-satoshi">
<body className={(inter.className = "overflow-x-hidden")}>
<Navbar />
<StarsCanvas />
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ const config: Config = {
],
theme: {
extend: {
fontFamily: {
satoshi: ["Satoshi", "serif"],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
Expand Down

0 comments on commit 5faf3fd

Please sign in to comment.