Skip to content

Commit

Permalink
Merge branch 'colorstackorg:main' into first-contribution
Browse files Browse the repository at this point in the history
  • Loading branch information
iperalta7 authored Jul 23, 2024
2 parents c8d4f61 + c4be48c commit 4bcf772
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
12 changes: 11 additions & 1 deletion apps/admin-dashboard/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,17 @@ export const links: LinksFunction = () => {
};

export const meta: MetaFunction = () => {
return [{ title: 'ColorStack | Admin Dashboard' }];
const title = 'Admin Dashboard';

const description =
'Your home for all things ColorStack administration. Manage applications, events and more!';

return [
{ title },
{ name: 'description', content: description },
{ property: 'og:title', content: title },
{ property: 'og:description', content: description },
];
};

export async function loader({ request }: LoaderFunctionArgs) {
Expand Down
12 changes: 11 additions & 1 deletion apps/member-profile/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,17 @@ export const links: LinksFunction = () => {
};

export const meta: MetaFunction = () => {
return [{ title: 'ColorStack | Member Profile' }];
const title = 'Member Profile';

const description =
'Your home for all things ColorStack membership. Manage your profile and more!';

return [
{ title },
{ name: 'description', content: description },
{ property: 'og:title', content: title },
{ property: 'og:description', content: description },
];
};

export async function loader({ request }: LoaderFunctionArgs) {
Expand Down
13 changes: 12 additions & 1 deletion apps/member-profile/app/routes/_public.apply._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,18 @@ import { Route } from '@/shared/constants';
import { commitSession, getSession } from '@/shared/session.server';

export const meta: MetaFunction = () => {
return [{ title: 'ColorStack Family Application' }];
const title = 'Apply to ColorStack';

const description =
'Apply to join the largest community of Black and Latinx Computer Science college students.';

return [
{ title },
{ name: 'description', content: description },
{ property: 'og:title', content: title },
{ property: 'og:description', content: description },
{ property: 'og:image', content: '/images/og_apply.jpg' },
];
};

const ApplyInput = ApplicationType.pick({
Expand Down
Binary file added apps/member-profile/public/images/og_apply.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4bcf772

Please sign in to comment.