Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion constants/role-specific-questions.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
},
{
"id": "6",
"role": "Content Strategist",
"role": "Marketing Director",
"questions": [
{
"question": "What do you see as the purposes of content within the user experience of an app?",
Expand Down
6 changes: 3 additions & 3 deletions src/app/roles/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const EXECUTIVE_TEAM: RoleItem[] = [
description:
"The Graphic Designer will support External Directors and the design team to create visual assets for marketing and project teams.",
responsibilities: [
"Work closely with Content Strategists to create effective cross-platform marketing for Blueprint.",
"Work closely with Marketing Directors to create effective cross-platform marketing for Blueprint.",
"Build and support UW Blueprint's brand through brand assets, graphics, and polished collateral (banners, website design, slideshows, etc.).",
"Use Figma and/or other design tools to produce graphic designs, illustrations, and motion design materials.",
],
Expand All @@ -156,9 +156,9 @@ const EXECUTIVE_TEAM: RoleItem[] = [
],
},
{
title: "Content Strategist",
title: "Marketing Director",
description:
"Collaborate with Graphic Designers and marketing team members to develop cohesive cross platform content for Blueprint.",
"The Marketing Director is in charge of Blueprint's brand image across the community, whether that's through our social channels, in-person events, or marketing to students, non-profits, and companies.",
responsibilities: [
"Plan, write, and manage content across social platforms, newsletters, and marketing materials.",
"Develop content calendars and campaign ideas that highlight Blueprint's projects, events, and community impact.",
Expand Down
11 changes: 9 additions & 2 deletions utils/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ import {
STORAGE_BUCKET,
} from "@utils/secrets";

// Placeholders keep Firebase initialization (`getAuth`/`getDatabase`) from
// throwing at import time during `next build` when these env vars are absent —
// e.g. CI runs on fork PRs, which GitHub does not expose repository secrets to,
// so the build would otherwise crash while collecting page data. Real
// deployments build with the real values injected, so the fallbacks are unused
// there.
export const firebaseConfig = {
apiKey: API_KEY,
apiKey: API_KEY || "placeholder-api-key",
authDomain: AUTH_DOMAIN,
databaseURL: DATABASE_URL,
databaseURL:
DATABASE_URL || "https://uw-blueprint-placeholder.firebaseio.com",
projectId: PROJECT_ID,
storageBucket: STORAGE_BUCKET,
messagingSenderId: MESSAGING_SENDER_ID,
Expand Down
Loading