www.634lagunastreeta.sites.openhomes.photo Open in urlscan Pro
3.33.194.28  Public Scan

URL: https://www.634lagunastreeta.sites.openhomes.photo/
Submission: On July 18 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
        </button>
      </div>
    </div>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-4">
  <div class="grid grid-cols-1 md:grid-cols-12 gap-4">
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="name" class="block text-right label">NAME:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label">NAME</label>
        <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-gray-700">
        <span x-show="!validForm.fields.name.valid" class="error-msg" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="email" class="block text-right label">EMAIL:</label>
    </div>
    <div class="md:col-span-9">
      <div class="mt-1">
        <label for="name" class="block md:hidden label">EMAIL</label>
        <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg" style="display: none;">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg" style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-center justify-end">
      <label for="phone-number" class="block text-right label">PHONE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="phone-number" class="block md:hidden label">PHONE</label>
      <div class="mt-1">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg" style="display: none;">Phone number cannot be empty</span>
      </div>
    </div>
    <div class="hidden col-span-3 md:flex items-start justify-end">
      <label for="message" class="block text-right label">MESSAGE:</label>
    </div>
    <div class="md:col-span-9">
      <label for="message" class="block md:hidden label">MESSAGE</label>
      <div class="mt-1">
        <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
        <span x-show="!validForm.fields.message.valid" class="error-msg" style="display: none;">Message cannot be empty</span>
      </div>
    </div>
    <div class="sm:flex sm:justify-end text-sm my-1 md:col-span-12">
      <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
        <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
    </div>
    <div class="hidden md:block col-span-3"></div>
    <div class="md:col-span-9">
      <div class="mt-1 text-right">
        <button type="submit" class="disabled:cursor-not-allowed disabled:opacity-50
                                            button-style uppercase md:tracking-widest text-center max-w-sm mx-auto text-sm
                                            sm:text-base" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
        </button>
      </div>
    </div>
  </div>
</form>

Text Content

MARY FITZGERALD PRESENTS


EXCEPTIONAL SAN FRANCISCO HOME


634 LAGUNA STREET #A, SAN FRANCISCO

|


$124,900


634 LAGUNA STREET #A

 * Home
 * Video
 * Gallery
 * Gallery
 * Gallery
 * City Structure
 * Features
 * Text
 * Custom HTML
 * Images
 * Images
 * Images
 * Custom Content
 * Custom Content
 * Custom Content
 * Video Tour
 * Virtual Tour
 * Floor Plans
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact
 * Recent Listings
 * 

Toggle navigation
 * Home
 * Video
 * Gallery
 * Gallery
 * Gallery
 * City Structure
 * Features
 * Text
 * Custom HTML
 * Images
 * Images
 * Images
 * Custom Content
 * Custom Content
 * Custom Content
 * Video Tour
 * Virtual Tour
 * Floor Plans
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact
 * Recent Listings
 * 


PROPERTY TOUR




ALL PROPERTY PHOTOS


View more


ALL PROPERTY PHOTOS


View more


ALL PROPERTY PHOTOS


View Photos



ALL PROPERTY PHOTOS

All property photos
View gallery

Neighborhood Gallery
View gallery



ALL PROPERTY PHOTOS

All property photos
View gallery

Neighborhood Gallery
View gallery



CITY STRUCTURE

This property has a development potential of ~3,024 sq ft

Existing building area

~2,340 sq ft

Units: 1 Levels: 2 ADUs: 0

New building area

~5,364 sq ft

Units: 2 Levels: 4 ADUs: 1
View detailed report

Powered by CityStructure


PROPERTY DETAILS

Bedrooms 3
Bathrooms 2
Square Feet 1,100 sq ft
Neighborhood Hayes Valley


OWN A SAN FRANCISCO GEM

Lovely remodeled 3bed/2bath condo with lots of natural light in the heart of
Hayes Valley. This nicely updated unit features a primary bedroom with dual-sink
en-suite bathroom & spa-like shower, two additional bedrooms, and an updated
bathroom with shower over tub to complete the one-level living area.Other
features include engineered wood floors, spacious open living room/dining area,
remodeled kitchen with beautiful green natural soapstone island and Cambria
quartz counters, stainless steel appliances with built-in wine rack, and a LR
fireplace with Cambria quartz hearth.The location cannot be beat when it comes
to endless options for coffee, restaurants, bars, & shops within a short walk,
as well as Patricia's Green, Hayes Valley Playground, and scones at Mercury
Cafe. Close to Civic Center, SF Ballet, Louise Davies Symphony Hall, Opera &
BART/Muni, and Freeway access. Walk score 97.Includes on-site garage with 1 car
parking with interior access, storage area, and shared  laundry. New roof
installed in 2022. Shared low-maintenance backyard ideal for peaceful lounging,
intimate gatherings, or quick playtime. 




FEATURES

 * Nicely Remodeled 3BR 2BA with open floorplan in the heart of Hayes Valley
 * Primary bedroom with en-suite and dual sinks 
 * Great natural light
 * Accessible to coffee, bars, restaurants, shops, Patricia's Green, Hayes
   Valley Playground, and scones at Mercury Cafe.
 * Close to Civic Center, SF Ballet, Louise Davies Symphony Hall, Opera &
   BART/Muni
 * Great freeway access
 * Outdoor space
 * 1 car parking with interior access
 * Storage
 * Shared laundry
 * New roof in 2022

Schedule a Tour


FEATURES

Nestled in the heart of vibrant Hayes Valley, this charming San Francisco
Victorian home offers an open-concept living space with high ceilings, bay
windows, and a modern kitchen. Outside, a private garden oasis provides a
tranquil escape. This urban gem is surrounded by boutique shops, cafes, and
cultural attractions, making it the ideal city retreat.

Keep reading

Nestled in the heart of vibrant Hayes Valley, this charming San Francisco
Victorian home offers an open-concept living space with high ceilings, bay
windows, and a modern kitchen. Outside, a private garden oasis provides a
tranquil escape. This urban gem is surrounded by boutique shops, cafes, and
cultural attractions, making it the ideal city retreat.


BROCHURE

style="width:600px; height:500px;" frameborder="0">


LUXURIOUS INDOORS

Caption 1



Caption 2



Caption 3




LUXURIOUS INDOORS




LUXURIOUS INDOORS



TITLE

hey it's a description

Keep reading

hey it's a description



Download

TITLE

description about a home

Keep reading

description about a home



HI

HI

bye

Keep reading

bye




PROPERTY TOUR




3D VIRTUAL TOUR




FLOOR PLANS


FLOOR PLAN

Download


NEIGHBORHOOD

Once a gritty urban hub, today's Hayes Valley offers an eclectic mix of
architectural styles, shops and restaurants, and a wonderfully diverse group of
neighbors. Where the Central Freeway once roared into San Francisco, there is
now a wide, tree-lined boulevard and little park called Patricia's Green, which
offers a peaceful respite in the midst of a very vibrant street scene.
Neighboring Duboce Park is a magnet for dogs and people.

Hayes Valley can feel like two neighborhoods in one. Davies Symphony Hall and
the War Memorial Opera House sit at the eastern edge of the neighborhood and
attract well-heeled visitors from all over the world. The tony shopping and
dining along Hayes Street can be decidedly upscale, while a few blocks north,
Haight Street's dive bars and funky shops attract hip locals and curious
tourists. The neighborhood offers all the transit options one would expect for
such a centrally located area, and freeway access could not be easier. Flat
streets and proximity to Market Street make the area especially appealing to
cyclists. Victorian, Queen Anne, and Edwardian townhouses are bountiful here,
along with the occasional new development.

Urban explorers delight in finding hidden treasures in the quaintly named alleys
that crisscross Hayes Valley, like Lily, Ivy, and Rose Streets. Like the
neighborhood itself, they offer a glimpse of old fashioned charm in the heart of
our booming metropolis.

Keep reading

Once a gritty urban hub, today's Hayes Valley offers an eclectic mix of
architectural styles, shops and restaurants, and a wonderfully diverse group of
neighbors. Where the Central Freeway once roared into San Francisco, there is
now a wide, tree-lined boulevard and little park called Patricia's Green, which
offers a peaceful respite in the midst of a very vibrant street scene.
Neighboring Duboce Park is a magnet for dogs and people.

Hayes Valley can feel like two neighborhoods in one. Davies Symphony Hall and
the War Memorial Opera House sit at the eastern edge of the neighborhood and
attract well-heeled visitors from all over the world. The tony shopping and
dining along Hayes Street can be decidedly upscale, while a few blocks north,
Haight Street's dive bars and funky shops attract hip locals and curious
tourists. The neighborhood offers all the transit options one would expect for
such a centrally located area, and freeway access could not be easier. Flat
streets and proximity to Market Street make the area especially appealing to
cyclists. Victorian, Queen Anne, and Edwardian townhouses are bountiful here,
along with the occasional new development.

Urban explorers delight in finding hidden treasures in the quaintly named alleys
that crisscross Hayes Valley, like Lily, Ivy, and Rose Streets. Like the
neighborhood itself, they offer a glimpse of old fashioned charm in the heart of
our booming metropolis.


View more


Mary Fitzgerald

The Oppenheim Group

DRE: #1234567 Cell: (415) 592-5145 Office: (415) 592-5187

mary@ogroup.com

www.ogroup.com

Best Realtor 2023

T Z


SCHEDULE

For additional showings, contact Mary Fitzgerald at (415) 592-5187 or
mary@ogroup.com

Upcoming Events

Sunday

Sep 24

Open House Tours

2:00 PM - 4:00 PM

Saturday

Sep 30

Open House Tours

1:00 PM - 3:00 PM

Sunday

Oct 1

Open House Tours

2:00 PM - 4:00 PM

Saturday

Oct 7

Open House Tours

1:00 PM - 3:00 PM

Sunday

Oct 8

Open House Tours

2:00 PM - 4:00 PM



Request an appointment


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


GET IN TOUCH

NAME:
NAME Name cannot be empty
EMAIL:
EMAIL Email cannot be empty Provide a valid email address
PHONE:
PHONE
Phone number cannot be empty
MESSAGE:
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.


Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Mary Fitzgerald

The Oppenheim Group

DRE: #1234567 Cell: (415) 592-5145 Office: (415) 592-5187

mary@ogroup.com

www.ogroup.com


RECENT LISTINGS

Mary Fitzgerald

3320 EAST LA PALMA AVENUE

Anaheim

4 Beds, 4 Baths, 1000 Sq. Ft.

$0
View Listing

Mary Fitzgerald

780 HARVARD PLACE

Cliffside Park

5 Beds, 3 Baths, 2001 Sq. Ft.

$0
View Listing

Mary Fitzgerald

689 SOUTH BERENDO STREET

Los Angeles

2000 Sq. Ft.

View Listing

Mary Fitzgerald

333 O'FARRELL STREET

San Francisco

5 Beds, 4 Baths, 1200 Sq. Ft.

$0
View Listing

Mary Fitzgerald

454 UNIVERSITY AVENUE

San Diego

3 Beds, 2 Baths, 1600 Sq. Ft.

$0
View Listing
Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 146

1 / 146

1 / 146

1 / 146

1 / 146

1 / 52

1 / 146

1 / 52


Nestled in the heart of vibrant Hayes Valley, this charming San Francisco
Victorian home offers an open-concept living space with high ceilings, bay
windows, and a modern kitchen. Outside, a private garden oasis provides a
tranquil escape. This urban gem is surrounded by boutique shops, cafes, and
cultural attractions, making it the ideal city retreat.

hey it's a description

description about a home

bye

Once a gritty urban hub, today's Hayes Valley offers an eclectic mix of
architectural styles, shops and restaurants, and a wonderfully diverse group of
neighbors. Where the Central Freeway once roared into San Francisco, there is
now a wide, tree-lined boulevard and little park called Patricia's Green, which
offers a peaceful respite in the midst of a very vibrant street scene.
Neighboring Duboce Park is a magnet for dogs and people.

Hayes Valley can feel like two neighborhoods in one. Davies Symphony Hall and
the War Memorial Opera House sit at the eastern edge of the neighborhood and
attract well-heeled visitors from all over the world. The tony shopping and
dining along Hayes Street can be decidedly upscale, while a few blocks north,
Haight Street's dive bars and funky shops attract hip locals and curious
tourists. The neighborhood offers all the transit options one would expect for
such a centrally located area, and freeway access could not be easier. Flat
streets and proximity to Market Street make the area especially appealing to
cyclists. Victorian, Queen Anne, and Edwardian townhouses are bountiful here,
along with the occasional new development.

Urban explorers delight in finding hidden treasures in the quaintly named alleys
that crisscross Hayes Valley, like Lily, Ivy, and Rose Streets. Like the
neighborhood itself, they offer a glimpse of old fashioned charm in the heart of
our booming metropolis.

1 / 52