Ex-FAANG (and other big corp) founders have a huge advantage right now. Knowing how big companies (struggle to) get work done is essential if you want to sell to them
Ex-FAANG (and other big corp) founders have a huge advantage right now. Knowing how big companies (struggle to) get work done is essential if you want to sell to them
Two paragraphs of comments for a single if statement! This is why I have no interest in engagement-bait hot takes and much prefer nuance. Comments are bad? Eh, not always.
New video: MDX with Next.js! Learn how to combine the power of React components with markdown in the App Router. We also cover some of the built-in metadata features as well as CSS view transitions.
I need to start making lists, any suggestions? - digital nomads portugal - digital nomads thailand - indie hackers - open source people ... and?
Imagine trading an hour of doomscrolling a day for an hour of exercise a day and what your life would be like in a year.
My talk "React Query API Design – Lessons Learned" is now available for everyone. Check it out! gitnation.com/contents/react…
Interesting. We need to rethink how messaging, including email, works overall.
1// This template requires the react-tweet package to be installed:
2//
3// npm install react-tweet
4
5import { Tweet } from "react-tweet";
6
7const testimonials = [
8 // Put the tweet links you want to display here
9 'https://x.com/theo/status/1863371742921851197',
10 'https://x.com/aarondfrancis/status/1863398963581235365',
11 'https://x.com/leeerob/status/1863001607618596969',
12 'https://x.com/eddiejaoude/status/1862276153932644448',
13 'https://x.com/rauchg/status/1863602572923412650',
14 'https://x.com/TkDodo/status/1860944067078611128',
15 'https://x.com/elonmusk/status/1868351943288181144'
16]
17
18const Testimonials1 = () => {
19 return (
20 <section className="w-full">
21 <div className="container flex flex-col items-center px-10">
22 <h2 className="mt-6 text-pretty text-2xl font-bold text-center lg:text-2xl">
23 See why our clients love us
24 </h2>
25 <span className="mb-6">(Wall of Love)</span>
26 <div data-theme="light" className="w-full" style={{ columnWidth: 280, columnGap: '1rem' }}>
27 {testimonials.map((tweet, index) => (
28 <div className="first:-mt-6" key={index}>
29 <Tweet key={index} id={tweet.split("/").pop()!} />
30 </div>
31 ))}
32 </div>
33 </div>
34 </section>
35 )
36}
37
38export default Testimonials1;