Skip to content

Commit c1f8e54

Browse files
committed
Bigger logo + footer changes
1 parent 882fbf2 commit c1f8e54

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

app/home/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Home({ setCurrentTab }: { setCurrentTab?: (tab: string)
77
<div className="relative flex flex-col w-full items-center">
88
<div className="absolute top-0 left-0 right-0 h-[60vh] bg-linear-to-b from-primary/11 dark:from-primary/6 to-transparent pointer-events-none" />
99

10-
<img className="rounded-md mt-8 mb-6" width={570} height={240} src="./banner.svg" alt="PySplanner Logo" />
10+
<img className="rounded-md mt-12 mb-12 h-50" src="./banner.svg" alt="PySplanner Logo" />
1111
<div className="w-3/8 text-center">
1212
<TypedHeading />
1313
<p className="text-lg text-muted-foreground mt-4">

components/footer.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
export function Footer({ className }: { className?: string }) {
22
return (
3-
<footer className={`mt-auto border-t border-fd-border py-6 px-6 text-center text-sm text-muted-foreground ${className ?? ''}`}>
4-
&copy; 2026 PySplanner. PySplanner is licensed under the <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" className="text-fd-foreground hover:underline">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>. The PySplanner name and logo are trademarks of PySplanner.
3+
<footer className={`mt-auto border-t border-fd-border py-4 px-6 text-center text-sm text-muted-foreground ${className ?? ''}`}>
4+
&copy; 2026 PySplanner. PySplanner is licensed under the &nbsp;
5+
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" className="text-fd-foreground hover:underline hover:text-white transition-colors duration-100 ease-in-out">
6+
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License
7+
</a>
8+
. The PySplanner name and logo are trademarks of PySplanner.
59
</footer>
610
);
711
}

0 commit comments

Comments
 (0)