✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
22 lines
973 B
TypeScript
22 lines
973 B
TypeScript
export declare const escapeHTML: (str: string) => string;
|
|
export declare class HTMLBytes extends Uint8Array {
|
|
}
|
|
/**
|
|
* A "blessed" extension of String that tells Astro that the string
|
|
* has already been escaped. This helps prevent double-escaping of HTML.
|
|
*/
|
|
export declare class HTMLString extends String {
|
|
get [Symbol.toStringTag](): string;
|
|
}
|
|
type BlessedType = string | HTMLBytes;
|
|
/**
|
|
* markHTMLString marks a string as raw or "already escaped" by returning
|
|
* a `HTMLString` instance. This is meant for internal use, and should not
|
|
* be returned through any public JS API.
|
|
*/
|
|
export declare const markHTMLString: (value: any) => any;
|
|
export declare function isHTMLString(value: any): value is HTMLString;
|
|
export declare function isHTMLBytes(value: any): value is HTMLBytes;
|
|
export declare function unescapeHTML(str: any): BlessedType | Promise<BlessedType | AsyncGenerator<BlessedType, void, unknown>> | AsyncGenerator<BlessedType, void, unknown>;
|
|
export {};
|