This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"baseUrl": "src" | |
}, | |
"include": ["src"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
padding: 0; | |
margin: 0; | |
box-sizing: border-box; | |
} | |
body { | |
height: 100vh; | |
width: 100vw; | |
display: flex; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Login / Signup Component | |
const Section = styled.section` | |
height: 100vh; | |
width: 100vw; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
h1 { | |
margin: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Navbar Routes | |
const navigationRoutes = [ | |
{ | |
name: "Search", | |
route: "/search", | |
}, | |
{ | |
name: "Compare", | |
route: "/compare", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
function Logo() { | |
return ( | |
<svg id="logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"> | |
<title>Logo</title> | |
<g> | |
<g id="K" transform="translate(35.000000, 35.000000)"> | |
<path | |
fill="currentColor" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Development Dockerfile | |
# This Dockerfile is intended for development use and includes development dependencies and tools. | |
# Use a Node.js base image with development tools | |
FROM node:16.0.0 AS development | |
# Create a directory where the application will be built | |
WORKDIR /app | |
# Copy over the dependency manifests, both the package.json |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use client"; | |
import { Command as CommandPrimitive, useCommandState } from "cmdk"; | |
import { X } from "lucide-react"; | |
import * as React from "react"; | |
import { forwardRef, useEffect } from "react"; | |
import { Badge } from "@/components/ui/badge"; | |
import { | |
Command, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Logo = () => { | |
return ( | |
<div className="flex p-5 justify-start items-center gap-2"> | |
<svg | |
id="logo-38" | |
width="78" | |
height="32" | |
viewBox="0 0 78 32" | |
fill="none" | |
xmlns="http://www.w3.org/2000/svg" |