Skip to content

Commit

Permalink
chore(landing-page): rename Email-Signup to SocialsPannel
Browse files Browse the repository at this point in the history
  • Loading branch information
HasithDeAlwis committed Oct 12, 2024
1 parent 2819305 commit 27f35d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions apps/landing-page/src/pages/homePage/heroSection/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import mountainSmall from "/hero-svgs/mountain_small.svg";
import raven from "/hero-svgs/raven.svg";
import snow from "/hero-svgs/snow.svg";

import { EmailSignup } from "./EmailSignup";
import { SocialsPannel } from "./SocialsPannel";

export const Hero = () => {
const addAnchor = () => {
Expand All @@ -22,9 +22,9 @@ export const Hero = () => {
src={mountainSmall}
alt="Mountain"
/>
<div className="background-gradient opacity-25"></div>
<div className="opacity-25 background-gradient"></div>
<img className="image mountain-big" src={mountainBig} alt="Mountain" />
<div className="background-gradient opacity-50"></div>
<div className="opacity-50 background-gradient"></div>
<div className="carleton-foreground">
<img className="image snow" src={snow} alt="Snow" />
<img
Expand All @@ -35,7 +35,7 @@ export const Hero = () => {
</div>
</div>
<div className="hero__content">
<EmailSignup id="email-signup-anchor"/>
<SocialsPannel id="email-signup-anchor"/>
<div id="raven" className=" w-96">
<img className="image " src={raven} alt="Raven" />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FrostedPanel } from "../../../components/FrostedPanel";
import { Text, Typo } from "../../../components/Typography";
import { FaGithub, FaFigma, FaInstagram, FaEnvelope, FaBookOpen } from "react-icons/fa";

export const EmailSignup = (props: { id?: string; className?: string }) => {
export const SocialsPannel = (props: { id?: string; className?: string }) => {
return (
<FrostedPanel className={props.className} id={props.id}>
<div className="flex flex-col items-center justify-center space-y-5">
Expand Down

0 comments on commit 27f35d1

Please sign in to comment.