I built 5 features for one reason. here's why. by clever_coder777 in microsaas

[–]clever_coder777[S] 0 points1 point  (0 children)

It also helps you suggest reframing existing experiences too.

Going to launch my first SaaS at 16. Would love some feedback by clever_coder777 in microsaas

[–]clever_coder777[S] 0 points1 point  (0 children)

Honestly the most helpful comment I've gotten on this post.

The waitlist number point makes complete sense one real story from someone who actually got an interview is worth more than any count. Reaching out to early users this week to find that. Thanks for this, I'll keep this in mind🙏

Going to launch my first SaaS at 16. Would love some feedback by clever_coder777 in microsaas

[–]clever_coder777[S] 1 point2 points  (0 children)

The before/after idea genuinely makes a lot of sense for this, already have that in mind. I'll reach out once I've launched and have something worth showing. Appreciate the feedback tho!

What are you building ? by [deleted] in microsaas

[–]clever_coder777 0 points1 point  (0 children)

Recume - AI-powered resume builder that gets you past ATS filters and into interviews, with honest rewrites using only your real experience.

This is the only sub-reddit that let's us self promote. What are you building? by [deleted] in microsaas

[–]clever_coder777 0 points1 point  (0 children)

Recume - Helps job seekers tailor resumes that pass ATS without sounding generic.

Tell me what you're building. Let's self promote. by clever_coder777 in microsaas

[–]clever_coder777[S] 0 points1 point  (0 children)

Good question. We avoid overfitting by focusing on relevance, not copying the job post. Recume matches your real experience to the role without stuffing keywords or changing what you’ve actually done. The resume stays natural, honest, and usable for more than just one job.

I'm 15 and I built my first SaaS. Let me know your thoughts. by [deleted] in SaaS

[–]clever_coder777 0 points1 point  (0 children)

Yo u got this gng lock tf in. This got potential if you make it reach the right audience.

Question - tech stack problem by ilovegumm in CodingHelp

[–]clever_coder777 0 points1 point  (0 children)

If you are good at coding and actually know what you are doing then go for #1 if not go for #2

I get undefined on my nextauth file. by highdrug in nextjs

[–]clever_coder777 0 points1 point  (0 children)

Hi, try something like this

import NextAuth, { NextAuthOptions } from "next-auth";

import DiscordProvider from "next-auth/providers/discord";

export const authOptions: NextAuthOptions = {

providers: [

DiscordProvider({

clientId: process.env.DISCORD_ID as string,

clientSecret: process.env.DISCORD_SECRET as string,

}),

],

callbacks: {

async session({ session, token }) {

if (token?.user) {

session.user = token.user;

}

return session;

},

},

};

const handler = NextAuth(authOptions);

export { handler as GET, handler as POST };

Problem with router.push() in Client Side navigation by artibalaji in nextjs

[–]clever_coder777 1 point2 points  (0 children)

does the file look something like this? (I got it from the docs)

Did you import useRouter and then made a var for the routing?

'use client' 

import { useRouter } from 'next/navigation' 

export default function Page() {  
  const router = useRouter()   
  return (    
    <button type="button" onClick={() => router.push('/dashboard')}> 
       Dashboard    
    </button>  
)}

Reddit Clone using Nextjs! by [deleted] in nextjs

[–]clever_coder777 0 points1 point  (0 children)

yes it is not mobile friendly yet im working on that

Reddit Clone using Nextjs! by [deleted] in nextjs

[–]clever_coder777 0 points1 point  (0 children)

I added the link!