Skip to content

Commit

Permalink
Merge pull request #958 from Code4GovTech/feat/frontend_phase2
Browse files Browse the repository at this point in the history
Frontend_V2
  • Loading branch information
tushar5526 authored Jun 18, 2024
2 parents 1e5e97a + 744f675 commit 0b66c48
Show file tree
Hide file tree
Showing 14 changed files with 688 additions and 536 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
import React from "react";

function C4GT2024Page() {
function C4GT2024Description() {
return (
<div
className="container padding-top--md padding-bottom--lg"
style={{ minHeight: "60vh" }}
className="container padding-top--md padding-bottom--lg container-height"
>
<div className="row">
<div className="col width">
<div>
<article>
<nav
className="theme-doc-breadcrumbs"
style={{ marginBottom: ".4rem" }}
className="theme-doc-breadcrumbs breadcrumbs-margin"
aria-label="breadcrumbs"
>
<ul className="breadcrumbs">
Expand All @@ -23,8 +21,7 @@ function C4GT2024Page() {
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<a
className="breadcrumbs__link breadcrumbs-items"
style={{ cursor: "pointer" }}
className="breadcrumbs__link breadcrumbs-items cursor-pointer"
>
C4GT'24
</a>
Expand Down Expand Up @@ -65,4 +62,4 @@ function C4GT2024Page() {
);
}

export default C4GT2024Page;
export default C4GT2024Description;
12 changes: 12 additions & 0 deletions src/components/ErrorComponent.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";

function ErrorComponent({ error }) {
return (
<div className="error"
>
<h3>{error.message}</h3>
</div>
);
}

export default ErrorComponent;
Loading

0 comments on commit 0b66c48

Please sign in to comment.