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
const BuiltWithShipFast = () => { | |
return ( | |
<a className="inline-block mt-4 text-sm border border-base-content/20 hover:border-base-content/40 hover:text-base-content/90 hover:bg-base-300 duration-200 cursor-pointer rounded text-base-content/80 px-2 py-1" href="https://shipfa.st/?via=YOUR_AFFILIATE_HERE" target="_blank"> | |
<div className="flex gap-1 items-center"> | |
<span>Built with</span> | |
<span className="font-bold text-base-content flex gap-0.5 items-center tracking-tight"> | |
<img alt="ShipFast logo" fetchPriority="high" width="20" height="20" decoding="async" className="w-5 h-5" style={{ | |
color: "transparent" | |
}} src="/shipfast_logo_transparent.webp" /> | |
ShipFast |
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
// | |
// 🌯⚡️ UI Components included in WrapFast SwiftUI Starter Kit: https://WrapFa.st | |
// | |
import SwiftUI | |
struct AppleCrusher: View { | |
@State private var isCrushing = false | |
@State private var isShaking = false | |
@State private var changeObjects = false |
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 SwiftUI | |
struct AnimatedSelector: View { | |
// Change this model for the proper case you need. | |
@Binding var selectedType: AnimatedSelectorType | |
// This boolean is used to disable the animated hand | |
@State var touchedAnySocialMedia = false | |