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
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> | |
<div class='container'> | |
<div class='inputs'> | |
<div class='name'> | |
<label for='name' class='name-label' id='name-label'>Your Name</label> | |
<input type='text' name='name' id='name-field' required> | |
</div> | |
<div class='submit'> | |
<a href='#' id='submit' class='submit'><i class="fa fa-sign-in" aria-hidden="true"></i></a> |
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
<html> | |
<head> | |
</head> | |
<body> | |
</body> | |
</html> |
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
<head> | |
<head> | |
<title>HTML ile Merhaba Dünya</title> | |
</head> | |
<body> | |
<h1>Selam!</h1> | |
<p> | |
Merhaba dünya! Artık HTML kullanabiliyorum! | |
</p> | |
</body> |
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
<head> | |
<head> | |
<title>Giriş Formu</title> | |
</head> | |
<body> | |
<form> | |
Kullanıcı Adı: <input type="text" name="username" id="username" placeholder="Kullanıcı Adı"></input> | |
<br /> | |
Şifre: <input type="password" name="password" id="password" placeholder="Şifre"/></input> | |
<br /> |
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
https://avatars.githubusercontent.com/u/44942737?v=4 |
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
/** | |
* BuildComponent function makes it easy to build classes for custom components. | |
* @param {string} name - Name of the component. | |
* @param {string} defaultClasses - Default classes for the component. | |
* @param {string} extraClasses - Extra classes for the component. | |
* @param {array} conditionalClasses - Array of objects, which is conditional classes for the component. | |
* @param {array} selectedClasses - Array of strings, which is selected classes for the component. | |
* @returns {object} data - Object with the following properties: | |
* @returns {string} data.name - Name of the component. | |
* @returns {string} data.classes - Classes for the component. |
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 { | |
createContext, | |
PropsWithChildren, | |
ReactNode, | |
useContext, | |
useEffect, | |
useState, | |
} from "react"; | |
import { AnimateSharedLayout, motion } from "framer-motion"; |
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
interface BuildComponentTypes { | |
name?: string; | |
defaultClasses?: string; | |
extraClasses?: string; | |
conditionalClasses?: Array<{ | |
[key: string]: string | boolean | undefined; | |
}>; | |
selectedClasses?: Array<string | boolean | undefined>; | |
} |
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 { isClient } from "@utils/isClient"; // check for Serverside rendering | |
interface DefaultSettingsTypes { | |
cookies: boolean; | |
installedVersion: string; | |
installedEnv: string; | |
navbarCollapsed: boolean; | |
} | |
const DefaultSettings: DefaultSettingsTypes = { |
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
https://www.youtube.com/watch?v=dQw4w9WgXcQ |
OlderNewer