Skip to content

Commit

Permalink
react-youtube-clone
Browse files Browse the repository at this point in the history
  • Loading branch information
Axe10rellana committed Sep 15, 2023
1 parent 1f7d822 commit e8ef90e
Show file tree
Hide file tree
Showing 7 changed files with 5,235 additions and 16,990 deletions.
22,161 changes: 5,201 additions & 16,960 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "react-youtube-clone",
"version": "0.0.1",
"description": "Código Base Del Proyecto React Youtube Clone Hecho En React.js y Material-UI.",
"version": "1.0.0",
"private": true,
"homepage": "./",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="React Youtube Clone" />
<meta name="description" content="Youtube Clone" />
<link rel="manifest" href="/manifest.json" />
<link rel="icon" href="/favicon.png" />
<link rel="favicon" href="/favicon.png" />
<link rel="apple-touch-icon" href="/favicon.png" />
<script defer src="https://kit.fontawesome.com/a74e3c1ac7.js" crossorigin="anonymous"></script>
<title>React Youtube Clone</title>
<title>Youtube Clone</title>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"short_name": "React Youtube Clone",
"short_name": "Youtube Clone",
"name": "React Youtube Clone",
"icons": [
{
Expand Down
3 changes: 1 addition & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//importaciones
import React from "react";

//react-router-dom
Expand All @@ -7,7 +6,7 @@ import { BrowserRouter, Route, Routes } from "react-router-dom";
//material-ui
import { Box } from "@mui/material";

//componentes
//components
import {
Navbar,
Feed,
Expand Down
6 changes: 1 addition & 5 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,4 @@ import "./styles/index.css";
import App from "./App";

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
root.render(<App />);
46 changes: 27 additions & 19 deletions src/styles/index.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,45 @@
/* IMPORTS */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* CUSTOM PROPERTIES */
:root {
/*fuente*/
--font: "Roboto, system-ui, -apple-system, BlinkMacSystemFont, " Segoe UI
", Ubuntu, " Helvetica Neue ", sans-serif";
--font: "Roboto, system-ui, -apple-system, BlinkMacSystemFont, " Segoe UI ", Ubuntu, " Helvetica Neue ", sans-serif";

/*paleta de colores*/
--color-01: #ffffff;
--color-02: #e9ebee;
--color-03: #a4b0be;
--color-04: #6b7c8e;
--color-05: #343a40;
--color-06: #000000;
--color-07: #f6e58d;
--color-08: #efd81d; /*amarillo de javascript*/
--color-09: #cf649a; /*rosa de sass*/
--color-10: #ff3e00; /*naranja de svelte*/
--color-11: #dc3545; /*danger de bootstrap*/
--color-12: #c3002f; /*rojo de angular*/
--color-08: #efd81d;
/*amarillo de javascript*/
--color-09: #cf649a;
/*rosa de sass*/
--color-10: #ff3e00;
/*naranja de svelte*/
--color-11: #dc3545;
/*danger de bootstrap*/
--color-12: #c3002f;
/*rojo de angular*/
--color-13: #a5d8ff;
--color-14: #61dafb; /*azul de react*/
--color-14: #61dafb;
/*azul de react*/
--color-15: #7bed9f;
--color-16: #42b983; /*verde de vue*/
--color-17: #128c7e; /*verde de whatsapp*/
--color-18: #7e12f9; /*violeta de bootstrap*/
--color-19: #2496ed; /*azul de docker*/
--color-16: #42b983;
/*verde de vue*/
--color-17: #128c7e;
/*verde de whatsapp*/
--color-18: #7e12f9;
/*violeta de bootstrap*/
--color-19: #2496ed;
/*azul de docker*/
--color-20: #1877f2;
--color-21: #003f8c;
--color-22: #022144;
--color-23: #2b3a42; /*azul negro de webpack*/
--color-24: #273443; /*azul negro de react*/
--color-23: #2b3a42;
/*azul negro de webpack*/
--color-24: #273443;
/*azul negro de react*/
--color-25: #282c34;
}

Expand Down Expand Up @@ -104,7 +112,6 @@ a {
transition: all 0.3s ease;
}

/* Mediaquerys */
@media screen and (max-width: 900px) {
.category-btn {
margin: 10px;
Expand All @@ -125,7 +132,8 @@ a {
.react-player {
height: 45vh !important;
}

.search-bar {
width: 200px;
}
}
}

1 comment on commit e8ef90e

@vercel
Copy link

@vercel vercel bot commented on e8ef90e Sep 15, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.