Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change "Stay Updated" button to "Apply" #102

Merged
merged 2 commits into from
Dec 17, 2023
Merged
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
6 changes: 1 addition & 5 deletions apps/site/src/app/(home)/sections/Landing/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,7 @@ const Landing = () => {
<p className="font-display text-2xl md:text-3xl">
January 26&ndash;28
</p>
<Button
className="z-10"
text="Stay updated"
href="https://uci.us13.list-manage.com/subscribe?u=5976872928cd5681fbaca89f6&id=93333e11eb"
/>
<Button className="z-10" text="Apply" href="/apply" />
</div>
</section>
);
Expand Down
2 changes: 0 additions & 2 deletions apps/site/src/lib/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ const Button: React.FC<ButtonProps> = ({
return (
<Link
href={href}
target={isLightVersion ? "" : "_blank"}
rileysw marked this conversation as resolved.
Show resolved Hide resolved
rel="noopener noreferrer"
className={clsx(
styles.button,
isLightVersion && styles.lightButton,
Expand Down