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

Adding Footer #46

Closed
wants to merge 1 commit into from
Closed
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
64 changes: 32 additions & 32 deletions frontend-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"@auth/prisma-adapter": "^1.4.0",
"@prisma/client": "^5.10.2",
"@prisma/client": "^5.16.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.25.0",
"@trpc/client": "next",
Expand Down Expand Up @@ -48,7 +48,7 @@
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.10.2",
"prisma": "^5.16.1",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.2"
},
Expand Down
12 changes: 12 additions & 0 deletions frontend-app/src/app/_components/footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";

const Footer = () => {
return (
<footer className="bg-gray-200 text-center p-4">
<p>Build with &#9829;</p>
<p>&copy; 2024 AutoMarket. All rights reserved.</p>
</footer>
);
};

export default Footer;
3 changes: 2 additions & 1 deletion frontend-app/src/app/create-run/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { Oval } from "react-loader-spinner";
import GlobalContext from "../GlobalContext";
import SidebarWrapper from "../_components/sidebar";

import Footer from "../_components/footer"
import WorkflowBuilder from "./WorkflowBuilder";
import { useState } from "react";

Expand Down Expand Up @@ -95,6 +95,7 @@ function CreateRun() {
<div>
{/* <AppBuilder /> */}
<WorkflowBuilder setLoading={setLoading} />
<Footer />
</div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions frontend-app/src/app/market/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import React, { useState, useEffect } from "react";
import SidebarWrapper from "../_components/sidebar";
import OutputModal from "../_components/output-component";
import Footer from "../_components/footer";

function Market() {
const [show, setShow] = useState(false);
Expand Down Expand Up @@ -92,6 +93,7 @@ function Market() {
</button>
</div>
))}
<Footer />
</div>
</div>
</div>
Expand Down