Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 09-15-2025, 08:41 AM   #1
kdz
Confirmed User
 
Industry Role:
Join Date: Sep 2023
Location: Asia
Posts: 196
Fast-Loading and SEO-Optimized Websites

Anyone needs a Fast-Loading and SEO-Optimized Websites
I can build it for your Business Website, Blog or Network of Blog, Landing Page or any Website just let me know.

For Inquiry, you can DM or Email me

__________________
We Build Paysite with Wordpress and Elevated X. We also do design integration to Wordpress and Statamic CMS (laravel) and Custom Web App (Laravel).
email: stig_me2010 at yahoo dot com

Last edited by kdz; 09-15-2025 at 09:37 AM.. Reason: image url update
kdz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-17-2025, 06:01 AM   #2
TheLegacy
SEO Connoisseur
 
TheLegacy's Avatar
 
Industry Role:
Join Date: Apr 2003
Location: Brantford, Ontario
Posts: 16,992
good work on the page speeds - please describe what you mean when you say SEO optimized. To many have different opinions on that.
__________________
SEO Connoisseur


Microsoft Teams: Robert Warren SEO
Telegram: @TheLegacy54
RobertWarrenSEO.com
TheLegacy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-17-2025, 07:09 AM   #3
natkejs
Confirmed User
 
Industry Role:
Join Date: Jan 2003
Location: Nomad Land
Posts: 1,629
Quote:
Originally Posted by TheLegacy View Post
good work on the page speeds - please describe what you mean when you say SEO optimized. To many have different opinions on that.
If you have a look at the site, it appears to be one static javascript file rendering all of it as a SPA.
Do such setups get love from search engines? I wouldn't know.

I wonder if it's compiled from a database so that the client can maintain the menu and so on, or is it just made as a demonstration of a "fast site" ?

Looks nice enough, though I would make sure to have the cursor change when hovering menu links etc.
__________________
natkejs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-17-2025, 09:07 AM   #4
kdz
Confirmed User
 
Industry Role:
Join Date: Sep 2023
Location: Asia
Posts: 196
Quote:
Originally Posted by TheLegacy View Post
good work on the page speeds - please describe what you mean when you say SEO optimized. To many have different opinions on that.
Thank you, it load fast even in Shared Hosting but much faster and better in Vercel.

This have a built-in SEO that support for managing metadata, sitemaps, and canonical URLs.

It use SSR (Server-Side Rendering) and SSG (Static-Site Generation) means that search engine crawlers receive full HTML, making the site easier to crawl and index.
__________________
We Build Paysite with Wordpress and Elevated X. We also do design integration to Wordpress and Statamic CMS (laravel) and Custom Web App (Laravel).
email: stig_me2010 at yahoo dot com
kdz is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-17-2025, 10:22 AM   #5
Mr Pheer
Retired
 
Mr Pheer's Avatar
 
Industry Role:
Join Date: Dec 2002
Posts: 21,176
Quote:
Originally Posted by kdz View Post
It use SSR (Server-Side Rendering) and SSG (Static-Site Generation) means that search engine crawlers receive full HTML, making the site easier to crawl and index.
Are you sure about that?

This is your page code:


I don't think it's working the way you intended.

Quote:
❌ Claim 1: "Uses SSR and SSG... search engine crawlers receive full HTML"
REALITY: When I fetched the site as a crawler would, I received:

An empty HTML body with zero content
Only a title tag visible
No server-rendered content whatsoever

This is the opposite of SSR/SSG. If SSR/SSG were properly implemented, I would have received the full restaurant content (menu, about, reservations) in the initial HTML response.
❌ Claim 2: "Built-in SEO that support for managing metadata, sitemaps, and canonical URLs"
REALITY: The fetch showed:

No meta descriptions
No Open Graph tags
No structured data
No canonical tags
No evidence of a sitemap

❌ Claim 3: "Loads fast"
REALITY:

Can't properly measure Core Web Vitals when content doesn't load for crawlers
Client-side rendering typically results in slower initial content paint
Google collects Core Web Vitals by observing how real users interact with your website How Core Web Vitals affect application SEO: Understanding Google page experience ranking and Lighthouse scores - Vercel, but without proper SSR, the initial experience is compromised

The Technical Truth
The site owner either:

Doesn't understand that their SSR/SSG isn't working properly
Is being deceptive about the implementation
Has misconfigured their Vercel deployment

What Properly Configured SSR Should Look Like:
When fetching a properly SSR/SSG site, you receive:

Full HTML content in the response
All text content visible without JavaScript
Meta tags, structured data, and SEO elements present
Immediate crawlability

What This Site Actually Does:

Sends empty HTML shell
Requires JavaScript execution to see anything
Provides nothing for search engines to index
Fails basic SEO requirements
Did you check this with anything or ask someone else to review it? Do an SEO assesment of that SEO's guys own website before you decide to listen to him

It looks outstanding and does load extremely fast. Have you had any success in Google with it?
__________________
2 lifeguards for Jessica
Mr Pheer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-17-2025, 12:31 PM   #6
cerulean
Web & App Development
 
cerulean's Avatar
 
Industry Role:
Join Date: Oct 2023
Location: United States
Posts: 182
Quote:
Originally Posted by natkejs View Post
If you have a look at the site, it appears to be one static javascript file rendering all of it as a SPA.
Do such setups get love from search engines? I wouldn't know.

I wonder if it's compiled from a database so that the client can maintain the menu and so on, or is it just made as a demonstration of a "fast site" ?

Looks nice enough, though I would make sure to have the cursor change when hovering menu links etc.
Search engines can read React, Vue, etc. SPAs just fine these days. I personally prefer static site generation for landing pages though.
__________________
Cerulean Software Specializes in Website and App Development. Email me today!
Get a Custom Landing Page with TapClick.Link - For Small Businesses and Creators
Keep Your Business and Members Area Secure with LoginBlue Password and Content Protection
cerulean is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 09-18-2025, 05:58 PM   #7
2MuchMark
Videochat Solutions
 
2MuchMark's Avatar
 
Industry Role:
Join Date: Aug 2004
Location: Canada
Posts: 49,238
*Ahem* :D




See it for yourself! https://2much.net

Thanks for your assistance with this, Legacy!

PS: Sweet work, kdz !
__________________

Custom Coding | Videochat Solutions | Age Verification | IT Help & Support
www.2Much.net
2MuchMark is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
blog, website, fast-loading, seo-optimized, websites, https://ibb.co/wfwk5y4c, email, contact, inquiry, question, network, build, landing, business, page



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.