Skip to content

Commit

Permalink
chore: move link tags to the body
Browse files Browse the repository at this point in the history
  • Loading branch information
iCrawl committed Sep 29, 2023
1 parent 643987d commit f802e34
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
37 changes: 35 additions & 2 deletions apps/report/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { Metadata } from "next";
import type { PropsWithChildren } from "react";
import { StyleSheets } from "./stylesheets";

import "~/styles/main.css";

Expand Down Expand Up @@ -67,7 +66,41 @@ export default function RootLayout({ children }: PropsWithChildren) {
return (
<html data-color-mode="dark" data-dark-theme="dark" lang="en">
<body>
<StyleSheets />
<link
crossOrigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/Primer/20.4.1/base.min.css"
integrity="sha512-Y3BvSXIyScMEFBi2QYvDc12tw0MpND6sYYKqdObiNlE432O1fv0/jeCbuuVeSNjd2ZuAM3EJbeVBFe/b0rKoYg=="
referrerPolicy="no-referrer"
rel="stylesheet"
/>
<link
crossOrigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/Primer/20.4.1/color-modes.min.css"
integrity="sha512-XTbUut8Rc/r06Iif/K7xDOub5F4TO2vTCV4InexCz5RvpGMaSfUf2tMRxYX6ha0zzFy+UfKdb94ehR+dOKYPhg=="
referrerPolicy="no-referrer"
rel="stylesheet"
/>
<link
crossOrigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/Primer/20.4.1/utilities.min.css"
integrity="sha512-OS48DOZqdQdDDxUfXtTx/xv8SjfIwc/k8gf75MaFh6uNb7xA50neIEvAi68wzvGJrW646ZVZH0AQXHSsvwMvpw=="
referrerPolicy="no-referrer"
rel="stylesheet"
/>
<link
crossOrigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/Primer/20.4.1/markdown.min.css"
integrity="sha512-z9fESt0h0bJJwWXYjGCV8v/SLbIkxgEIRBvt9d4xw+xSNUT+D1RpA/BUu8FBu6RqRWetBNaKeCC9Tr16/hPBhw=="
referrerPolicy="no-referrer"
rel="stylesheet"
/>
<link
crossOrigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/github-dark.min.css"
integrity="sha512-rO+olRTkcf304DQBxSWxln8JXCzTHlKnIdnMUwYvQa9/Jd4cQaNkItIUj6Z4nvW1dqK0SKXLbn9h4KwZTNtAyw=="
referrerPolicy="no-referrer"
rel="stylesheet"
/>
<script
// eslint-disable-next-line react/no-danger
dangerouslySetInnerHTML={{
Expand Down
33 changes: 0 additions & 33 deletions apps/report/src/app/stylesheets.tsx

This file was deleted.

1 comment on commit f802e34

@vercel
Copy link

@vercel vercel bot commented on f802e34 Sep 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

yuudachi-report – ./apps/report

yuudachi-report.vercel.app
yuudachi-report-discordjs.vercel.app
yuudachi-report-git-main-discordjs.vercel.app

Please sign in to comment.