Skip to content

Commit

Permalink
add github banner
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffordfajardo authored Mar 22, 2022
1 parent 3624823 commit 22cec45
Show file tree
Hide file tree
Showing 5 changed files with 691 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/components/ViewSourceGithub/ViewSourceGithub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const ViewSourceGithub = () => {
<svg
viewBox="0 0 250 250"
style={{
height: isMobile ? 50 : 80,
width: isMobile ? 50 : 80,
height: isMobile ? 35 : 80,
width: isMobile ? 35 : 80,
}}
>
<path className="octo-triangle" d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
Expand Down
2 changes: 1 addition & 1 deletion app/layouts/DefaultLayout/DefaultLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Props = {
const DefaultLayout: React.FC<Props> = ({ title = "About | Microdiscounts.website", children, submitForm }) => {
return (
<>
{/* <ViewSourceGithub /> */}
<ViewSourceGithub />
<NavBar submitForm={submitForm as () => void} />
<Container>{children}</Container>
</>
Expand Down
1 change: 1 addition & 0 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const links = () => {
* @description
* This loader is used for determining what enviornment we are in "development" or "production"
* The environment variable is passed down to the browser
* See: https://remix.run/docs/en/v1/guides/envvars#server-environment-variables
*/
export async function loader() {
return json({
Expand Down
Loading

1 comment on commit 22cec45

@vercel
Copy link

@vercel vercel bot commented on 22cec45 Mar 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.