Skip to content

Commit

Permalink
Add SpringOne CFP banner (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksoncvm committed Apr 17, 2024
1 parent c2c08aa commit 7db86c0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/layout/Banner.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from "react";

const Banner = () => {
return (
<p id="skinny-banner" className={`main has-text-centered has-background-light py-3`}>
SpringOne Call for papers is open—<a href="https://springone.io" target="_blank">Submit your talk</a> by May 3!
</p>
);
};

export default Banner;
2 changes: 2 additions & 0 deletions src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import * as React from "react"
import Navbar from "./Navbar"
import Banner from "./Banner"

const Header = () => {
return (
<div className="header">
<Banner />
<Navbar />
</div>
)
Expand Down

0 comments on commit 7db86c0

Please sign in to comment.