Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bf92f90
Merge pull request #9 from plan-cake/main
liug88 Jun 29, 2025
278021e
Redesign landing page and update branding to Plancake
liug88 Jun 29, 2025
e489bdb
Revamp homepage branding and update color scheme
liug88 Jun 29, 2025
6595f22
Redesign header and hero, add custom logo component
liug88 Jun 29, 2025
3816601
Logo Container
liug88 Jun 29, 2025
0b3d508
Refactor schedule grid to use Tailwind classes
liug88 Jun 29, 2025
61d00b2
hamburger (incomplete)
danielshid Jul 5, 2025
1cd52d9
Merge remote-tracking branch 'origin/main-preview' into navigation-bar
danielshid Jul 12, 2025
519d814
vertical line added + touch-ups
danielshid Jul 18, 2025
2b168db
Revamp homepage and logo styles for improved UI
liug88 Jul 19, 2025
a956b93
Replace images with emojis and update styles
liug88 Jul 19, 2025
451f45f
Update logo colors and text stroke styles
liug88 Jul 19, 2025
c954a89
Refine homepage layout and update section content
liug88 Jul 19, 2025
7b2b4f0
Add client-side mount check to Logo component
liug88 Jul 19, 2025
eb9888b
Merge remote-tracking branch 'origin/main-preview' into navigation-bar
danielshid Jul 22, 2025
5cffab7
slightly cleaner
danielshid Jul 22, 2025
7c98141
Refactor theme toggle to fixed position in header
liug88 Jul 26, 2025
0ac5466
Centering the Why Plancake? Section on mobile
liug88 Jul 26, 2025
411b90f
Merge remote-tracking branch 'origin/landing-page' into navigation-bar
danielshid Jul 28, 2025
a234e42
added menu to updated landing page
danielshid Jul 28, 2025
4eb79f6
fix dark mode text color
mirmirmirr Aug 2, 2025
5f85846
Merge remote-tracking branch 'origin/landing-page' into navigation-bar
danielshid Aug 2, 2025
fa39182
removed span on dropdown options
danielshid Aug 6, 2025
9e596ae
resolved hamburger hydration errors
danielshid Aug 12, 2025
5fa3c75
Merge pull request #12 from plan-cake/navigation-bar
mirmirmirr Aug 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
runs-on: ubuntu-latest

permissions:
contents: write # Required to push to the repo
contents: write # Required to push to the repo

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }} # Checkout PR branch
ref: ${{ github.head_ref }} # Checkout PR branch

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
node-version: "20"
cache: "npm"

- name: Install dependencies
run: npm ci
Expand Down
65 changes: 60 additions & 5 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,86 @@
@import "react-day-picker/style.css";

:root {
--background: #f5f5f5;
--background: #ffffff;
--foreground: #3e3c53;
--bone-base: #e9deca;
--red-base: #ff5c5c;
--white-base: #ffffff;
--bone: #e9deca;
--lion: #deb887;
--violet: #3e3c53;
--stone: #9ca3af;
--red: #ff6b6b;
--calendar-accent: var(--color-blue);
--calendar-accent-background: var(--color-blue-100);
}

@media (prefers-color-scheme: dark) {
:root {
--background: #3e3c53;
--foreground: #e9deca;
--background: var(--violet);
--foreground: var(--bone);
--calendar-accent: var(--color-red);
--calendar-accent-background: var(--color-red-200);
}
}

.dark {
--background: #3e3c53;
--foreground: #e9deca;
--background: var(--violet);
--foreground: var(--bone);
--calendar-accent: var(--color-red);
--calendar-accent-background: var(--color-red-200);
}

body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-nunito);
}

.font-display {
font-family: var(--font-modak);
letter-spacing: -0.02em;
line-height: 0.9;
}

.text-bone {
color: var(--bone);
}

.text-lion {
color: var(--lion);
}

.text-violet {
color: var(--violet);
}

.text-outline {
-webkit-text-stroke: 2px currentColor;
color: transparent;
}

.text-outline-dark {
-webkit-text-stroke: 2px var(--violet);
color: transparent;
text-shadow: 2px 2px 0px var(--violet);
}

.text-outline-light {
-webkit-text-stroke: 2px var(--bone);
color: transparent;
text-shadow: 2px 2px 0px var(--bone);
}

.text-outline-golden {
-webkit-text-stroke: 2px var(--lion);
color: transparent;
}

.bubble-text {
font-family: var(--font-modak);
letter-spacing: 0.05em;
line-height: 1.1;
}

.rdp-root {
Expand Down
26 changes: 10 additions & 16 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,22 @@ const nunito = Nunito({
});

export const metadata: Metadata = {
title: "tomeeto",
description: "to meet or not to meet",
title: "plancake",
description: "Stacking up perfect plans, one pancake at a time",
};

export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html
lang="en"
suppressHydrationWarning
className={`${modak.variable} ${nunito.variable}`}
>
<body className="font-sans antialiased">
<div className="flex min-h-dvh flex-col p-10">
<Providers>
<Header />
{children}
</Providers>
</div>
<html lang="en" className={`${modak.variable} ${nunito.variable}`}>
<body>
<Providers>
<Header />
{children}
</Providers>
</body>
</html>
);
Expand Down
Loading