Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
alonkeyval committed Aug 3, 2023
1 parent 592be7e commit ef93cc6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions frontend/webapp/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React from "react";
import { ThemeProvider } from "styled-components";
import theme from "@/styles/palette";
import { QueryClient, QueryClientProvider } from "react-query";
import Head from "next/head";

const LAYOUT_STYLE: React.CSSProperties = {
margin: 0,
Expand Down Expand Up @@ -30,6 +31,9 @@ export default function RootLayout({
<html lang="en">
<QueryClientProvider client={queryClient}>
<ThemeProvider theme={theme}>
<Head>
<title>Odigos</title>
</Head>
<body suppressHydrationWarning={true} style={LAYOUT_STYLE}>
{children}
</body>
Expand Down
6 changes: 5 additions & 1 deletion frontend/webapp/app/overview/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use client";
// "use client";
import { Menu } from "@/components/side.menu";
import theme from "@/styles/palette";
import { Metadata } from "next";
import React from "react";

const LAYOUT_STYLE = {
Expand All @@ -14,6 +15,9 @@ const CHILDREN_STYLE = {
width: "100%",
height: "93%",
};
export const metadata: Metadata = {
title: "Odigos",
};

export default function Layout({ children }: { children: React.ReactNode }) {
return (
Expand Down
Binary file added frontend/webapp/assets/logos/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/webapp/design.system/text/text.styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from "styled-components";
export const TextWrapper = styled.p`
color: ${({ theme }) => theme.text.white};
margin: 0;
font-family: ${({ theme }) => theme.font_family.primary};
font-family: ${({ theme }) => theme.font_family.primary}, sans-serif;
font-size: 16px;
font-weight: 400;
`;

0 comments on commit ef93cc6

Please sign in to comment.