Skip to content

Commit

Permalink
Add Branding/Logos (#20)
Browse files Browse the repository at this point in the history
* add favicon

* added logo on the home page

* add logo to readme
  • Loading branch information
ZyrnDev authored Nov 28, 2024
1 parent 10e8cb8 commit 9cdd0df
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Cryowala

# Add Logo Image
![Cryowala Logo](./app/logo.png)

# Introduction
This project aims to assist researchers work with cryogenic devices like quantum computers.
It provides a set of tools to simulate heat load & noise in the cryogenic fridge and present that data visually.
Expand Down
Binary file removed app/favicon.ico
Binary file not shown.
Binary file added app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import { useFridge } from "@/components/config/context";
import Link from "next/link"
import { PropsWithChildren } from "react";
import largeLogo from "@/public/logo.png";
import Image from "next/image";

const links = [
{ href: "/fridge/configure", label: "Configure Fridge" },
Expand All @@ -24,6 +26,8 @@ export default function Home() {

return (
<main className="flex min-h-screen flex-row flex-wrap items-center justify-between p-24 max-w-4xl mx-auto">
<Image src={largeLogo} alt="Fridge Logo" />

{links.map(({ href, label }) => (
<Button key={href}>
<Link href={href}>{label}</Link>
Expand Down
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
swcMinify: true,
images: {
unoptimized: true,
},
webpack: (config, _) => {
// Add Support to import the raw text from Python files
config.module.rules.push({
Expand Down
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion public/vercel.svg

This file was deleted.

0 comments on commit 9cdd0df

Please sign in to comment.