This file contains hidden or 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
local M = {} | |
M.colors = { | |
bg = "#0a0a0a", | |
fg = "#dadada", | |
light_grey = "#747474", | |
grey = "#7f8c98", | |
purple = "#dabaff", | |
pink = "#ff7ab2", | |
orange = "#ff8170", |
This file contains hidden or 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 { AnimationProps, motion } from "framer-motion"; | |
import { useState } from "react"; | |
type Feedbacks = "bad" | "not bad" | "good"; | |
const feedbackMapping: { [key: number]: Feedbacks } = { | |
0: "bad", | |
1: "not bad", |
This file contains hidden or 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
// Root Layout | |
import type { Metadata, Viewport } from "next"; | |
import type { Organization } from "schema-dts"; | |
import "../../styles/globals.css"; | |
export const metadata: Metadata = { | |
metadataBase: new URL(process.env.BASE_URL), |
This file contains hidden or 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
```csv | |
Date,Deal Value,Pre-seed/Seed,Early VC,Later VC,Venture Growth | |
Q1 2016,$51.4B,$42.4B,$4.0B,$2.8B,$2.2B | |
Q2 2016,$63.2B,$50.1B,$5.9B,$4.2B,$3.0B | |
Q3 2016,$49.3B,$38.7B,$5.1B,$3.2B,$2.2B | |
Q4 2016,$55.4B,$43.1B,$5.6B,$3.6B,$3.1B | |
Q1 2017,$60.1B,$47.5B,$6.3B,$3.9B,$2.4B | |
Q2 2017,$80.8B,$63.6B,$8.0B,$5.1B,$4.1B | |
Q3 2017,$63.5B,$49.0B,$6.7B,$4.5B,$3.2B | |
Q4 2017,$90.0B,$68.0B,$9.8B,$6.2B,$6.0B |